Skip to content

Commit

Permalink
chore: fix dependencies in java-dataproc (#11109)
Browse files Browse the repository at this point in the history
* chore: fix dependencies in java-dataproc

This PR fixes java-dataproc by changing its `gprc-google-iam-v1`
to test-scoped. This however brings a compilation error because
the proto classes transitively brought by the mentioned dependency
are not available anymore. This is fixed by additionally bringing
the `proto-google-iam-v1` as compile-scoped.

More context in
https://www.techradar.com/news/audio/portable-audio/best-noise-cancelling-headphones-1280490#section-the-best-premium-noise-cancelling-headphones

* Update pom.xml
  • Loading branch information
diegomarquezp authored Sep 3, 2024
1 parent 57c17df commit aa3c6f6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions java-dataproc/google-cloud-dataproc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,14 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-iam-v1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
Expand Down

0 comments on commit aa3c6f6

Please sign in to comment.