Skip to content

Commit 1d89191

Browse files
authored
fix: exclude protobuf from conformance-tests (#845)
* fix: exclude protobuf from conformance-tests * formatting
1 parent 61262c9 commit 1d89191

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

google-cloud-bigtable/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,20 @@
203203
<groupId>com.google.cloud</groupId>
204204
<artifactId>google-cloud-conformance-tests</artifactId>
205205
<scope>test</scope>
206+
<exclusions>
207+
<!--
208+
* The protos for bigtable are already included in the classpath
209+
as the declared dependency above. Exclude it here.
210+
* Exclude the firestore protos to prevent creating a dependency
211+
diamond with any transitive dependencies.
212+
* Exclude protobuf-java to prefer the version declared here
213+
in the project.
214+
-->
215+
<exclusion>
216+
<groupId>*</groupId>
217+
<artifactId>*</artifactId>
218+
</exclusion>
219+
</exclusions>
206220
</dependency>
207221
<dependency>
208222
<groupId>com.google.truth</groupId>

pom.xml

-14
Original file line numberDiff line numberDiff line change
@@ -163,20 +163,6 @@
163163
<groupId>com.google.cloud</groupId>
164164
<artifactId>google-cloud-conformance-tests</artifactId>
165165
<version>0.1.0</version>
166-
<exclusions>
167-
<!--
168-
* The protos for bigtable are already included in the classpath
169-
as the declared dependency above. Exclude it here.
170-
* Exclude the firestore protos to prevent creating a dependency
171-
diamond with any transitive dependencies.
172-
* Exclude protobuf-java to prefer the version declared here
173-
in the project.
174-
-->
175-
<exclusion>
176-
<groupId>*</groupId>
177-
<artifactId>*</artifactId>
178-
</exclusion>
179-
</exclusions>
180166
</dependency>
181167
<dependency>
182168
<groupId>com.google.truth</groupId>

0 commit comments

Comments
 (0)