mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
Root project now specifies dependencies correctly (#1121)
* Root project now specifies dependencies correctly with new cordapp system. * Fixed a comment.
This commit is contained in:
parent
39e7c25627
commit
d6fcf2650f
21
build.gradle
21
build.gradle
@ -168,22 +168,23 @@ repositories {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Corda root project currently produces a dummy cordapp when it shouldn't.
|
||||||
// Required for building out the fat JAR.
|
// Required for building out the fat JAR.
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':node')
|
corda project(':node')
|
||||||
compile "com.google.guava:guava:$guava_version"
|
compile "com.google.guava:guava:$guava_version"
|
||||||
|
|
||||||
// Set to compile to ensure it exists now deploy nodes no longer relies on build
|
// Set to corda compile to ensure it exists now deploy nodes no longer relies on build
|
||||||
compile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
corda project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
||||||
compile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
corda project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
||||||
|
|
||||||
// For the buildCordappDependenciesJar task
|
// For the buildCordappDependenciesJar task
|
||||||
runtime project(':client:jfx')
|
cordaRuntime project(':client:jfx')
|
||||||
runtime project(':client:mock')
|
cordaRuntime project(':client:mock')
|
||||||
runtime project(':client:rpc')
|
cordaRuntime project(':client:rpc')
|
||||||
runtime project(':core')
|
cordaRuntime project(':core')
|
||||||
runtime project(':finance')
|
cordaRuntime project(':finance')
|
||||||
runtime project(':webserver')
|
cordaRuntime project(':webserver')
|
||||||
testCompile project(':test-utils')
|
testCompile project(':test-utils')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user