mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
fffa063803
* 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
17 lines
582 B
Groovy
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"
|
|
}
|
|
} |