Renamed corda configuration in gradle to cordaCompile to be more explicit. (#1131)

* Renamed corda configuration in gradle to cordaCompile to be more explicit.

* Bumped version number of gradle plugins.
This commit is contained in:
Clinton
2017-07-27 17:53:51 +01:00
committed by GitHub
parent 197e627970
commit 9eceb26ee9
10 changed files with 49 additions and 49 deletions

View File

@ -25,10 +25,10 @@ dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
// Corda integration dependencies
corda project(path: ":node:capsule", configuration: 'runtimeArtifacts')
corda project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
corda project(':core')
corda project(':finance')
cordaCompile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
cordaCompile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
cordaCompile project(':core')
cordaCompile project(':finance')
// Corda Plugins: dependent flows and services
cordapp project(':samples:bank-of-corda-demo')