Skip to content

Commit 0138ebe

Browse files
committed
chore: Resolve enforcer errors
1 parent 753f22f commit 0138ebe

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

api-common-java/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@
4444
<groupId>com.google.guava</groupId>
4545
<artifactId>guava</artifactId>
4646
<version>${guava.version}</version>
47+
<exclusions>
48+
<exclusion>
49+
<groupId>com.google.errorprone</groupId>
50+
<artifactId>error_prone_annotations</artifactId>
51+
</exclusion>
52+
<exclusion>
53+
<groupId>com.google.j2objc</groupId>
54+
<artifactId>j2objc-annotations</artifactId>
55+
</exclusion>
56+
</exclusions>
4757
</dependency>
4858
<dependency>
4959
<groupId>com.google.auto.value</groupId>

gapic-generator-java/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,12 @@
381381
<groupId>com.google.guava</groupId>
382382
<artifactId>guava</artifactId>
383383
<version>${guava.version}</version>
384+
<exclusions>
385+
<exclusion>
386+
<groupId>com.google.errorprone</groupId>
387+
<artifactId>error_prone_annotations</artifactId>
388+
</exclusion>
389+
</exclusions>
384390
</dependency>
385391
<dependency>
386392
<groupId>com.google.api</groupId>

java-common-protos/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@
8282
<groupId>com.google.guava</groupId>
8383
<artifactId>guava</artifactId>
8484
<version>${guava.version}</version>
85+
<exclusions>
86+
<exclusion>
87+
<groupId>com.google.errorprone</groupId>
88+
<artifactId>error_prone_annotations</artifactId>
89+
</exclusion>
90+
</exclusions>
8591
</dependency>
8692
<dependency>
8793
<groupId>javax.annotation</groupId>

0 commit comments

Comments
 (0)