2018-08-16 14:44:40 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
dependencies {
|
2018-10-24 12:58:19 +00:00
|
|
|
compile "info.picocli:picocli:$picocli_version"
|
2018-08-16 14:44:40 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2019-06-20 15:19:16 +00:00
|
|
|
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jackson_version"
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
2019-09-20 14:10:15 +00:00
|
|
|
compile "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
|
2019-05-15 15:40:12 +00:00
|
|
|
|
|
|
|
compile "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
|
|
compile "junit:junit:${junit_version}"
|
|
|
|
|
2019-05-20 10:57:56 +00:00
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
2019-05-15 15:40:12 +00:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
2018-08-16 14:44:40 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
languageVersion = "1.2"
|
|
|
|
}
|
|
|
|
}
|