Added a new capsule build.gradle to allow multiple bintray uploads from one build.gradle.

This commit is contained in:
Clinton Alexander
2016-12-01 16:34:25 +00:00
committed by Clinton Alexander
parent 348092cfa6
commit 810596927e
11 changed files with 137 additions and 103 deletions

View File

@ -36,7 +36,7 @@ sourceSets {
}
}
compileTestJava.dependsOn tasks.getByPath(':node:buildCordaJAR')
compileTestJava.dependsOn tasks.getByPath(':node:capsule:buildCordaJAR')
dependencies {
compile project(':core')
@ -48,7 +48,7 @@ dependencies {
exclude group: "bouncycastle"
}
runtime project(path: ":node", configuration: 'runtimeArtifacts')
runtime project(path: ":node:capsule", configuration: 'runtimeArtifacts')
}
mainClassName = "net.corda.docs.ClientRpcTutorialKt"