Skip to content

Commit aa3c6f6

Browse files
chore: fix dependencies in java-dataproc (#11109)
* 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
1 parent 57c17df commit aa3c6f6

File tree

1 file changed

+5
-0
lines changed
  • java-dataproc/google-cloud-dataproc

1 file changed

+5
-0
lines changed

java-dataproc/google-cloud-dataproc/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,14 @@
4949
<groupId>com.google.guava</groupId>
5050
<artifactId>guava</artifactId>
5151
</dependency>
52+
<dependency>
53+
<groupId>com.google.api.grpc</groupId>
54+
<artifactId>proto-google-iam-v1</artifactId>
55+
</dependency>
5256
<dependency>
5357
<groupId>com.google.api.grpc</groupId>
5458
<artifactId>grpc-google-iam-v1</artifactId>
59+
<scope>test</scope>
5560
</dependency>
5661
<dependency>
5762
<groupId>com.google.api</groupId>

0 commit comments

Comments
 (0)