Skip to content

Commit

Permalink
fix: exclude protobuf from conformance-tests (#845)
Browse files Browse the repository at this point in the history
* fix: exclude protobuf from conformance-tests

* formatting
  • Loading branch information
mutianf committed May 27, 2021
1 parent 61262c9 commit 1d89191
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 14 additions & 0 deletions google-cloud-bigtable/pom.xml
Expand Up @@ -203,6 +203,20 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-conformance-tests</artifactId>
<scope>test</scope>
<exclusions>
<!--
* The protos for bigtable are already included in the classpath
as the declared dependency above. Exclude it here.
* Exclude the firestore protos to prevent creating a dependency
diamond with any transitive dependencies.
* Exclude protobuf-java to prefer the version declared here
in the project.
-->
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
Expand Down
14 changes: 0 additions & 14 deletions pom.xml
Expand Up @@ -163,20 +163,6 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-conformance-tests</artifactId>
<version>0.1.0</version>
<exclusions>
<!--
* The protos for bigtable are already included in the classpath
as the declared dependency above. Exclude it here.
* Exclude the firestore protos to prevent creating a dependency
diamond with any transitive dependencies.
* Exclude protobuf-java to prefer the version declared here
in the project.
-->
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
Expand Down

0 comments on commit 1d89191

Please sign in to comment.