corda/testing/test-cli/build.gradle
Stefano Franz fffa063803
Cli backwards compatibility testing (#3733)
* first pass at infrastructure around cli compatibility

* add example unit test

* inspect enum types

* add a basic unit test to verify behaviour of the cli checker

* revert root build.gradle
2018-08-16 15:44:40 +01:00

17 lines
582 B
Groovy

apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile group: 'info.picocli', name: 'picocli', version: '3.0.1'
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.+"
compile "junit:junit:$junit_version"
}
compileKotlin {
kotlinOptions {
languageVersion = "1.2"
}
}