diff --git a/core/BUILD.bazel b/core/BUILD.bazel index a4c1b29612e..ebe5b64c277 100644 --- a/core/BUILD.bazel +++ b/core/BUILD.bazel @@ -49,6 +49,6 @@ java_library( exports = [ ":internal", "//api", - "//inprocess", + "//util", ], ) diff --git a/services/build.gradle b/services/build.gradle index 73cb90d1843..57e33192000 100644 --- a/services/build.gradle +++ b/services/build.gradle @@ -24,8 +24,8 @@ dependencies { libraries.guava.jre // JRE required by protobuf-java-util runtimeOnly libraries.errorprone.annotations, - libraries.j2objc.annotations // Explicit dependency to keep in step with version used by guava - + libraries.j2objc.annotations, // Explicit dependency to keep in step with version used by guava + libraries.gson // to fix checkUpperBoundDeps error here compileOnly libraries.javax.annotation testImplementation project(':grpc-testing'), libraries.netty.transport.epoll, // for DomainSocketAddress diff --git a/util/build.gradle b/util/build.gradle index ffc3e80fbe8..b1babf60b34 100644 --- a/util/build.gradle +++ b/util/build.gradle @@ -13,7 +13,6 @@ dependencies { implementation libraries.animalsniffer.annotations, libraries.guava - runtimeOnly libraries.gson // to fix checkUpperBoundDeps error in services testImplementation testFixtures(project(':grpc-api')), testFixtures(project(':grpc-core')), project(':grpc-testing')