Merge pull request #35 from corda/clint-M6publishing

Corda can be published to bintray and reduced publishing boilerplate in build.gradle.
This commit is contained in:
Clinton
2016-12-09 15:07:46 +00:00
committed by GitHub
30 changed files with 614 additions and 280 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"