mirror of
https://github.com/corda/corda.git
synced 2025-01-22 20:38:05 +00:00
36 lines
845 B
Groovy
36 lines
845 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description 'CLI Utilities'
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile project(":common-logging")
|
|
|
|
compile "info.picocli:picocli:$picocli_version"
|
|
compile "commons-io:commons-io:$commons_io_version"
|
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
|
|
// JAnsi: for drawing things to the terminal in nicely coloured ways.
|
|
compile "org.fusesource.jansi:jansi:$jansi_version"
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
// Need the JDK
|
|
compile files(org.gradle.internal.jvm.Jvm.current().toolsJar)
|
|
|
|
// Aegis4J
|
|
compile project(':tools:aegis4j')
|
|
}
|
|
|
|
jar {
|
|
baseName = "corda-tools-cliutils"
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|
|
|