Publish cliutils (#3927)

This commit is contained in:
Anthony Keenan 2018-09-11 13:36:38 +01:00 committed by GitHub
parent 7459115f54
commit 97cd2fcd3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -350,7 +350,8 @@ bintrayConfig {
'corda-serialization-deterministic',
'corda-tools-blob-inspector',
'corda-tools-explorer',
'corda-tools-network-bootstrapper'
'corda-tools-network-bootstrapper',
'corda-tools-cliutils'
]
license {
name = 'Apache-2.0'

View File

@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'net.corda.plugins.publish-utils'
description 'CLI Utilities'
@ -15,3 +16,12 @@ dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
jar {
baseName = "cliutils"
}
publish {
name 'corda-tools-cliutils'
}