You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2021/02/19 16:42:46 UTC

[nifi] branch main updated: NIFI-8240: Unify Kudu versions

This is an automated email from the ASF dual-hosted git repository.

pvillard 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 662a35b  NIFI-8240: Unify Kudu versions
662a35b is described below

commit 662a35b7de8de06ad0da06eaa8e0804e8ba9d9e8
Author: Grant Henke <gh...@cloudera.com>
AuthorDate: Fri Feb 19 09:43:49 2021 -0600

    NIFI-8240: Unify Kudu versions
    
    The Kudu versions for the controller service and processors
    currently doesn’t match. This patch unifies the version in
    the parent bundle pom to ensure they match going forward.
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #4832.
---
 .../nifi-kudu-bundle/nifi-kudu-controller-service/pom.xml            | 5 -----
 nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/pom.xml       | 4 ----
 nifi-nar-bundles/nifi-kudu-bundle/pom.xml                            | 5 +++++
 3 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-controller-service/pom.xml b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-controller-service/pom.xml
index acde412..d2f8bae 100644
--- a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-controller-service/pom.xml
+++ b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-controller-service/pom.xml
@@ -24,11 +24,6 @@
     <artifactId>nifi-kudu-controller-service</artifactId>
     <packaging>jar</packaging>
 
-
-    <properties>
-        <exclude.tests>None</exclude.tests>
-        <kudu.version>1.13.0</kudu.version>
-    </properties>
     <build>
         <extensions>
             <!-- Used to find the right kudu-binary artifact with the Maven
diff --git a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/pom.xml b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/pom.xml
index 2c022f8..71c0f0b 100644
--- a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/pom.xml
@@ -24,10 +24,6 @@
     <artifactId>nifi-kudu-processors</artifactId>
     <packaging>jar</packaging>
 
-    <properties>
-        <exclude.tests>None</exclude.tests>
-        <kudu.version>1.14.0</kudu.version>
-    </properties>
     <build>
         <extensions>
             <!-- Used to find the right kudu-binary artifact with the Maven
diff --git a/nifi-nar-bundles/nifi-kudu-bundle/pom.xml b/nifi-nar-bundles/nifi-kudu-bundle/pom.xml
index 2a98ba5..6ac0899 100644
--- a/nifi-nar-bundles/nifi-kudu-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-kudu-bundle/pom.xml
@@ -27,6 +27,11 @@
     <version>1.14.0-SNAPSHOT</version>
     <packaging>pom</packaging>
 
+    <properties>
+        <exclude.tests>None</exclude.tests>
+        <kudu.version>1.14.0</kudu.version>
+    </properties>
+
     <modules>
         <module>nifi-kudu-processors</module>
         <module>nifi-kudu-nar</module>