mirror of
https://github.com/corda/corda.git
synced 2024-12-28 08:48:57 +00:00
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"
|
||
|
}
|