From abcdfeedf4de745080a118907da96bc55a8fbc85 Mon Sep 17 00:00:00 2001 From: Michele Sollecito Date: Tue, 3 Apr 2018 10:21:42 +0100 Subject: [PATCH] [CORDA-1294]: Publish corda-shell module. (#2905) --- build.gradle | 2 +- tools/shell/build.gradle | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8b7f906d38..55d66b0994 100644 --- a/build.gradle +++ b/build.gradle @@ -293,7 +293,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', 'corda-finance', 'corda-node', 'corda-node-api', 'corda-test-common', 'corda-test-utils', 'corda-jackson', 'corda-verifier', 'corda-webserver-impl', 'corda-webserver', 'corda-node-driver', 'corda-confidential-identities'] + publications = ['corda-jfx', 'corda-mock', 'corda-rpc', 'corda-core', 'corda', 'corda-finance', 'corda-node', 'corda-node-api', 'corda-test-common', 'corda-test-utils', 'corda-jackson', 'corda-verifier', 'corda-webserver-impl', 'corda-webserver', 'corda-node-driver', 'corda-confidential-identities', 'corda-shell'] license { name = 'Apache-2.0' url = 'https://www.apache.org/licenses/LICENSE-2.0' diff --git a/tools/shell/build.gradle b/tools/shell/build.gradle index 73c5aafb16..7a0721593f 100644 --- a/tools/shell/build.gradle +++ b/tools/shell/build.gradle @@ -2,6 +2,7 @@ apply plugin: 'kotlin' apply plugin: 'java' apply plugin: 'application' apply plugin: 'net.corda.plugins.quasar-utils' +apply plugin: 'net.corda.plugins.publish-utils' description 'Corda Shell' @@ -90,3 +91,7 @@ task integrationTest(type: Test) { testClassesDirs = sourceSets.integrationTest.output.classesDirs classpath = sourceSets.integrationTest.runtimeClasspath } + +publish { + name jar.baseName +} \ No newline at end of file