38 lines
No EOL
841 B
Groovy
38 lines
No EOL
841 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.junit.platform:junit-platform-gradle-plugin:+"
|
|
}
|
|
}
|
|
|
|
group 'online.anthonycicchetti'
|
|
version '0.1.0'
|
|
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'org.junit.platform.gradle.plugin'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.0'
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
testCompile commonJunitCompile
|
|
testRuntime commonJunitRuntime
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
junitPlatform {
|
|
details 'tree'
|
|
} |