43 lines
No EOL
807 B
Groovy
43 lines
No EOL
807 B
Groovy
import com.anthonycicchetti.financetracker.DependencyVersions
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
id 'kotlin'
|
|
}
|
|
|
|
group 'online.anthonycicchetti'
|
|
version '0.1.0'
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
api "com.fasterxml.jackson.module:jackson-module-kotlin:${DependencyVersions.Jackson}"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |