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