Skip to content

Commit 3e7833e

Browse files
deps: exclude un-used runtime dependencies brought in by gax-grpc (#1490)
Fixes b/216195517 Exclude: ``` io.grpc:grpc-xds:jar:1.42.1:runtime io.grpc:grpc-services:jar:1.42.1:runtime com.google.re2j:re2j:jar:1.5:runtime org.bouncycastle:bcprov-jdk15on:jar:1.67:runtime io.opencensus:opencensus-proto:0.2.0:runtime ```
1 parent 7efe427 commit 3e7833e

File tree

1 file changed

+22
-0
lines changed
  • google-cloud-bigquerystorage

1 file changed

+22
-0
lines changed

google-cloud-bigquerystorage/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,28 @@
9595
<dependency>
9696
<groupId>com.google.api</groupId>
9797
<artifactId>gax-grpc</artifactId>
98+
<exclusions>
99+
<exclusion>
100+
<groupId>io.grpc</groupId>
101+
<artifactId>grpc-xds</artifactId>
102+
</exclusion>
103+
<exclusion>
104+
<groupId>io.grpc</groupId>
105+
<artifactId>grpc-services</artifactId>
106+
</exclusion>
107+
<exclusion>
108+
<groupId>com.google.re2j</groupId>
109+
<artifactId>re2j</artifactId>
110+
</exclusion>
111+
<exclusion>
112+
<groupId>org.bouncycastle</groupId>
113+
<artifactId>bcprov-jdk15on</artifactId>
114+
</exclusion>
115+
<exclusion>
116+
<groupId>io.opencensus</groupId>
117+
<artifactId>opencensus-proto</artifactId>
118+
</exclusion>
119+
</exclusions>
98120
</dependency>
99121
<dependency>
100122
<groupId>org.threeten</groupId>

0 commit comments

Comments
 (0)