mirror of
https://github.com/corda/corda.git
synced 2025-06-17 14:48:16 +00:00
Fixed a warning caused by an incorrect configuration. (#1227)
This commit is contained in:
@ -33,9 +33,9 @@ sourceSets {
|
|||||||
compileTestJava.dependsOn tasks.getByPath(':node:capsule:buildCordaJAR')
|
compileTestJava.dependsOn tasks.getByPath(':node:capsule:buildCordaJAR')
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core')
|
cordaCompile project(':core')
|
||||||
compile project(':client:jfx')
|
cordaCompile project(':client:jfx')
|
||||||
compile project(':test-utils')
|
cordaCompile project(':test-utils')
|
||||||
testCompile project(':verifier')
|
testCompile project(':verifier')
|
||||||
|
|
||||||
compile "org.graphstream:gs-core:1.3"
|
compile "org.graphstream:gs-core:1.3"
|
||||||
@ -43,8 +43,8 @@ dependencies {
|
|||||||
exclude group: "bouncycastle"
|
exclude group: "bouncycastle"
|
||||||
}
|
}
|
||||||
|
|
||||||
compile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
cordaCompile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
||||||
compile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
cordaCompile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
||||||
}
|
}
|
||||||
|
|
||||||
mainClassName = "net.corda.docs.ClientRpcTutorialKt"
|
mainClassName = "net.corda.docs.ClientRpcTutorialKt"
|
||||||
|
Reference in New Issue
Block a user