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

dionusos pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/oozie.git


The following commit(s) were added to refs/heads/master by this push:
     new 286fd59  OOZIE-3628 Fix Oozie build errors caused by Maven 3.8.1
286fd59 is described below

commit 286fd59ad1c3a2da61727393b8989d2653b95c54
Author: Denes Bodo <dionu...@apache.org>
AuthorDate: Mon Jun 21 16:27:43 2021 +0200

    OOZIE-3628 Fix Oozie build errors caused by Maven 3.8.1
---
 core/pom.xml                      | 6 ++++++
 fluent-job/fluent-job-api/pom.xml | 2 +-
 release-log.txt                   | 1 +
 sharelib/hcatalog/pom.xml         | 4 ++++
 zookeeper-security-tests/pom.xml  | 6 ++++++
 5 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/core/pom.xml b/core/pom.xml
index 649cdd0..6fe0a00 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -185,6 +185,12 @@
             <groupId>org.apache.hive.hcatalog</groupId>
             <artifactId>hive-hcatalog-server-extensions</artifactId>
             <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.pentaho</groupId>
+                    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/fluent-job/fluent-job-api/pom.xml 
b/fluent-job/fluent-job-api/pom.xml
index 1f98a71..dadc081 100644
--- a/fluent-job/fluent-job-api/pom.xml
+++ b/fluent-job/fluent-job-api/pom.xml
@@ -118,7 +118,7 @@
             <plugin>
                 <groupId>com.github.davidmoten</groupId>
                 <artifactId>jax-maven-plugin</artifactId>
-                <version>0.1.6</version>
+                <version>0.1.8</version>
                 <dependencies>
                     <dependency>
                         <groupId>org.jvnet.jaxb2_commons</groupId>
diff --git a/release-log.txt b/release-log.txt
index f4c25ab..5660d44 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.3.0 release (trunk - unreleased)
 
+OOZIE-3628 Fix Oozie build errors caused by Maven 3.8.1
 OOZIE-3605 ShareLib installation does not honor dfs.replication in HDFS 
configuration (luyuanhao via gezapeti)
 OOZIE-3608 Coordinator emits wrong WARN about TimeZones (larsfrancke via 
gezapeti)
 OOZIE-3586 Oozie spark actions using --keytab fail due to duplicate dist. 
cache (jmakai via asalamon74)
diff --git a/sharelib/hcatalog/pom.xml b/sharelib/hcatalog/pom.xml
index 5cfcff4..9f48a5c 100644
--- a/sharelib/hcatalog/pom.xml
+++ b/sharelib/hcatalog/pom.xml
@@ -254,6 +254,10 @@
                     <groupId>javax.jms</groupId>
                     <artifactId>jms</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.pentaho</groupId>
+                    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
 
diff --git a/zookeeper-security-tests/pom.xml b/zookeeper-security-tests/pom.xml
index 8754dbc..0b55301 100644
--- a/zookeeper-security-tests/pom.xml
+++ b/zookeeper-security-tests/pom.xml
@@ -77,6 +77,12 @@
             <groupId>org.apache.hive.hcatalog</groupId>
             <artifactId>hive-webhcat-java-client</artifactId>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.pentaho</groupId>
+                    <artifactId>pentaho-aggdesigner-algorithm</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 

Reply via email to