mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +00:00
bcfadfeebf
* Add shell extensions to CLI utils class and move into its own module * Fix issue with completion script generation and slight refactor * Fix autocompletion for logging level * Delete uneeded comment * More tidying up * Make run function final * Fixed an issue with the program being run twice. * Address review comments
15 lines
384 B
Groovy
15 lines
384 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
description 'CLI Utilities'
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
|
|
compile "info.picocli:picocli:$picocli_version"
|
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
}
|