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:
Viktor Kolomeyko 2018-07-02 17:08:55 +01:00 committed by GitHub
parent 389e6421be
commit ab3974ed60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,8 +47,8 @@ dependencies {
compile project(':finance')
compileOnly project(':node-api')
compile project(':core')
compile project(':client:rpc')
rpcProxyCompile project(':core')
rpcProxyCompile project(':client:rpc')
// includes jetty/jersey dependencies used by RPCProxyServer
compile project(':webserver')