Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix samples failure due to dep. conflict
com.google.cloud.opentelemetry.exporter-metrics depends on a very old version of com.google.cloud.google-cloud-monitoring which conflicts with newer com.google.cloud.google-cloud-bigquery builds
  • Loading branch information
PhongChuong committed Oct 8, 2024
commit 92138208e56a6d480a60936350072db3f4e252c3
11 changes: 11 additions & 0 deletions samples/install-without-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@
<artifactId>google-cloud-bigquery</artifactId>
<version>2.43.0</version>
</dependency>

<!--
Explicitly set google-cloud-monitoring due to conflict with
com.google.cloud.opentelemetry.exporter-metrics.
-->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-monitoring</artifactId>
<version>3.52.0</version>
</dependency>

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions samples/snapshot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@
<artifactId>google-cloud-bigquery</artifactId>
<version>2.43.0</version>
</dependency>

<!--
Explicitly set google-cloud-monitoring due to conflict with
com.google.cloud.opentelemetry.exporter-metrics.
-->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-monitoring</artifactId>
<version>3.52.0</version>
</dependency>

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
Expand Down