This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch support/nifi-1.13 in repository https://gitbox.apache.org/repos/asf/nifi.git
commit c7d6dfc4df915075f54975f0a0db287585eb23b2 Author: Grant Henke <[email protected]> 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 <[email protected]> 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 7f3592e..532ecca 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 980a8c7..f330f4c 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 c8997a9..289149d 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.13.1-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>
