Publish test-common. (#957)

This commit is contained in:
Andrzej Cichocki 2017-07-03 17:54:30 +01:00 committed by GitHub
parent 56402c744a
commit e586822640
2 changed files with 10 additions and 2 deletions

View File

@ -248,7 +248,7 @@ bintrayConfig {
projectUrl = 'https://github.com/corda/corda'
gpgSign = true
gpgPassphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
publications = ['corda-jfx', 'corda-mock', 'corda-rpc', 'corda-core', 'corda', 'cordform-common', 'corda-finance', 'corda-node', 'corda-node-api', 'corda-node-schemas', 'corda-test-utils', 'corda-jackson', 'corda-verifier', 'corda-webserver-impl', 'corda-webserver']
publications = ['corda-jfx', 'corda-mock', 'corda-rpc', 'corda-core', 'corda', 'cordform-common', 'corda-finance', 'corda-node', 'corda-node-api', 'corda-node-schemas', 'corda-test-common', 'corda-test-utils', 'corda-jackson', 'corda-verifier', 'corda-webserver-impl', 'corda-webserver']
license {
name = 'Apache-2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0'

View File

@ -1 +1,9 @@
// Nothing needed here currently.
apply plugin: 'net.corda.plugins.publish-utils'
jar {
baseName 'corda-test-common'
}
publish {
name = jar.baseName
}