Fixed a warning caused by an incorrect configuration. (#1227)

This commit is contained in:
Clinton
2017-08-15 12:29:04 +01:00
committed by GitHub
parent d575e5a4ab
commit 9149900938

View File

@ -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"