This is an automated email from the ASF dual-hosted git repository.
joewitt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 05d0d36e70 NIFI-13268 Fixed missing grpc dependencies in GCP module
This closes #8863
05d0d36e70 is described below
commit 05d0d36e70a34cd9fd3e0fcb9b9475cf5ffcc573
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Tue May 21 22:10:01 2024 +0200
NIFI-13268 Fixed missing grpc dependencies in GCP module
This closes #8863
Signed-off-by: Joseph Witt <[email protected]>
---
.../nifi-gcp-bundle/nifi-gcp-services-api/pom.xml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git
a/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-services-api/pom.xml
b/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-services-api/pom.xml
index 5c08d461d2..e33720dba9 100644
--- a/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-services-api/pom.xml
+++ b/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-services-api/pom.xml
@@ -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>