NIFI-13268 Fixed missing grpc dependencies in GCP module

This closes #8863

Signed-off-by: Joseph Witt <joewitt@apache.org>
This commit is contained in:
Peter Turcsanyi 2024-05-21 22:10:01 +02:00 committed by Joseph Witt
parent a971f94015
commit 05d0d36e70
No known key found for this signature in database
GPG Key ID: 9093BF854F811A1A
1 changed files with 18 additions and 0 deletions

View File

@ -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>