Skip to content

Commit

Permalink
deps: exclude un-used runtime dependencies brought in by gax-grpc (#1490
Browse files Browse the repository at this point in the history
)

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
```
  • Loading branch information
stephaniewang526 authored Jan 25, 2022
1 parent 7efe427 commit 3e7833e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions google-cloud-bigquerystorage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,28 @@
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax-grpc</artifactId>
<exclusions>
<exclusion>
<groupId>io.grpc</groupId>
<artifactId>grpc-xds</artifactId>
</exclusion>
<exclusion>
<groupId>io.grpc</groupId>
<artifactId>grpc-services</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.re2j</groupId>
<artifactId>re2j</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>io.opencensus</groupId>
<artifactId>opencensus-proto</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
Expand Down

0 comments on commit 3e7833e

Please sign in to comment.