You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by km...@apache.org on 2019/01/18 07:51:47 UTC

[oozie] branch master updated: OOZIE-3414 Oozie master does not compile with -Dhadoop.version=2.8.5 (asalamon74 via kmarton)

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

kmarton 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 2fbad90  OOZIE-3414 Oozie master does not compile with -Dhadoop.version=2.8.5 (asalamon74 via kmarton)
2fbad90 is described below

commit 2fbad90dac735b84be3d6d51fa0fd58e0fd89171
Author: Julia Kinga Marton <km...@apache.org>
AuthorDate: Fri Jan 18 08:51:38 2019 +0100

    OOZIE-3414 Oozie master does not compile with -Dhadoop.version=2.8.5 (asalamon74 via kmarton)
---
 pom.xml         | 6 ++++++
 release-log.txt | 1 +
 tools/pom.xml   | 5 +++++
 3 files changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index bd3c9fe..93fffc7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -357,6 +357,12 @@
 
             <dependency>
                 <groupId>org.apache.hadoop</groupId>
+                <artifactId>hadoop-hdfs</artifactId>
+                <version>${hadoop.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-minicluster</artifactId>
                 <version>${hadoop.version}</version>
                 <scope>test</scope>
diff --git a/release-log.txt b/release-log.txt
index c502084..ffdaca4 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.2.0 release (trunk - unreleased)
 
+OOZIE-3414 Oozie master does not compile with -Dhadoop.version=2.8.5 (asalamon74 via kmarton)
 OOZIE-3401 [test] fix TestPySpark failure (kmarton, asalamon74)
 OOZIE-3419 [fluent-job] GraphVisualization fails before JDK 1.8.0_u40 (andras.piros via kmarton)
 OOZIE-3422 [client] Enhance logging of Oozie client connecting to the Oozie server (asalamon74 via andras.piros)
diff --git a/tools/pom.xml b/tools/pom.xml
index 76dc0d9..832cb58 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -49,6 +49,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>
+            <artifactId>hadoop-hdfs</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-minicluster</artifactId>
             <scope>test</scope>
         </dependency>