40 lines
No EOL
846 B
Groovy
40 lines
No EOL
846 B
Groovy
import com.anthonycicchetti.financetracker.DependencyVersions
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
|
}
|
|
}
|
|
|
|
group 'online.anthonycicchetti'
|
|
version '0.1.0'
|
|
|
|
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
|
|
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()
|
|
} |