mirror of
https://github.com/corda/corda.git
synced 2025-06-10 19:31:46 +00:00
Switch dependencies to rpcProxyCompile. (#1173)
The problem manifests itself in IntelliJ when full rebuilt is performed with Gradle delegation. In this case IntelliJ executes the following tasks: `:testing:qa:behave:tools:rpc-proxy:classes`, `:testing:qa:behave:tools:rpc-proxy:testClasses`, `:testing:qa:behave:tools:rpc-proxy:smokeTestClasses` and `:testing:qa:behave:tools:rpc-proxy:rpcProxyClasses` Without the change when `rpcProxyClasses` task executed - the build fails. The problem is likely to be caused by the fact that this is a multi-sourceSets project.
This commit is contained in:
parent
389e6421be
commit
ab3974ed60
@ -47,8 +47,8 @@ dependencies {
|
|||||||
|
|
||||||
compile project(':finance')
|
compile project(':finance')
|
||||||
compileOnly project(':node-api')
|
compileOnly project(':node-api')
|
||||||
compile project(':core')
|
rpcProxyCompile project(':core')
|
||||||
compile project(':client:rpc')
|
rpcProxyCompile project(':client:rpc')
|
||||||
|
|
||||||
// includes jetty/jersey dependencies used by RPCProxyServer
|
// includes jetty/jersey dependencies used by RPCProxyServer
|
||||||
compile project(':webserver')
|
compile project(':webserver')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user