Skip to content

Commit

Permalink
NIFI-13268 Fixed missing grpc dependencies in GCP module
Browse files Browse the repository at this point in the history
This closes apache#8863

Signed-off-by: Joseph Witt <[email protected]>
  • Loading branch information
turcsanyip authored and joewitt committed May 22, 2024
1 parent a971f94 commit 05d0d36
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,23 @@
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
</dependency>
<!-- please do not remove grpc-* dependencies because they are used by GCP processors at runtime,
see also https://github.com/apache/nifi/pull/8491#issuecomment-1992542785 -->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-context</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-util</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit 05d0d36

Please sign in to comment.