mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
046b104fee
* Fix link in shell documentation
* The TypeSafe config parser wants extensions.sshd to be present in the config even though extensions is nullable
* Temp commit
* Make Standalone Shell use picocli
* Simplify gradle config for bootstrapper
* Fix logging dependency issues
* Revert "Temp commit"
This reverts commit f4efafcc9d
.
* Fix quasarExcludeExpression
* Correct bootstrapper configuration
* Correct CRaSH capitalisation in docs
* Fix unit tests
* Fix help text typo
* Make logging level case insensitive
* Fix CRaSH capitalisation in help text
* Fix unit tests
29 lines
660 B
Groovy
29 lines
660 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 "info.picocli:picocli:$picocli_version"
|
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
compile "org.slf4j:slf4j-api:$slf4j_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"
|
|
}
|
|
|
|
jar {
|
|
baseName = "cliutils"
|
|
}
|
|
|
|
publish {
|
|
name 'corda-tools-cliutils'
|
|
}
|
|
|