You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by an...@apache.org on 2018/07/19 15:50:01 UTC

oozie git commit: OOZIE-3306 Make it possible to override maven dependency plugin version number (asalamon74 via andras.piros)

Repository: oozie
Updated Branches:
  refs/heads/master 03b1a9f1e -> 4de5533c5


OOZIE-3306 Make it possible to override maven dependency plugin version number (asalamon74 via andras.piros)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/4de5533c
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/4de5533c
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/4de5533c

Branch: refs/heads/master
Commit: 4de5533c5c754c44d23d39eb450ffef9235ca65c
Parents: 03b1a9f
Author: Andras Piros <an...@cloudera.com>
Authored: Thu Jul 19 17:49:34 2018 +0200
Committer: Andras Piros <an...@cloudera.com>
Committed: Thu Jul 19 17:49:34 2018 +0200

----------------------------------------------------------------------
 docs/src/site/twiki/ENG_Building.twiki | 14 ++++++++++++++
 pom.xml                                |  3 ++-
 release-log.txt                        |  1 +
 3 files changed, 17 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/4de5533c/docs/src/site/twiki/ENG_Building.twiki
----------------------------------------------------------------------
diff --git a/docs/src/site/twiki/ENG_Building.twiki b/docs/src/site/twiki/ENG_Building.twiki
index 5466e15..b861026 100644
--- a/docs/src/site/twiki/ENG_Building.twiki
+++ b/docs/src/site/twiki/ENG_Building.twiki
@@ -201,6 +201,20 @@ file the following message 'SKIPPING TEST: TestPipesMain, binary 'wordcount-simp
 There are 2 testcases that use the *wordcount-simple* pipes binary, *TestPipesMain* and *TestMapReduceActionExecutor*,
 the 'SKIPPING TEST..." message would appear in the testcase log file of both testcases.
 
+---+++ Testing using dist_test and grind
+
+Testing using [[https://github.com/cloudera/dist_test][dist_test]] framework with
+[[https://github.com/cloudera/dist_test/blob/master/docs/grind.md][grind]] front end might not work using the default 3.0.2
+version of the maven dependency plugin. It is necessary to downgrade to version 2.10 using
+<code>-Dmaven-dependency-plugin.version=2.10</code> .
+
+Maven flags for grind can be specified using <code>GRIND_MAVEN_FLAGS</code> environment variable:
+
+<verbatim>
+export GRIND_MAVEN_FLAGS=-Dmaven.dependency.plugin.version=2.10
+grind test --java-version 8
+</verbatim>
+
 ---++ Building an Oozie Distribution
 
 An Oozie distribution bundles an embedded Jetty server.

http://git-wip-us.apache.org/repos/asf/oozie/blob/4de5533c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0c39d64..92358aa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,6 +71,7 @@
         <maven.test.java.opts>-Xmx2048m -da -XX:MetaspaceSize=512M -XX:MaxMetaspaceSize=1024M -XX:+CMSClassUnloadingEnabled
                               -XX:+UseConcMarkSweepGC</maven.test.java.opts>
         <maven.javadoc.opts>-Xdoclint:all</maven.javadoc.opts>
+        <maven-dependency-plugin.version>3.0.2</maven-dependency-plugin.version>
 
         <oozie.data.dir>${oozie.test.dir}</oozie.data.dir>
         <oozie.test.db.host>localhost</oozie.test.db.host>
@@ -1748,7 +1749,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-dependency-plugin</artifactId>
-                    <version>3.0.2</version>
+                    <version>${maven-dependency-plugin.version}</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.openjpa</groupId>

http://git-wip-us.apache.org/repos/asf/oozie/blob/4de5533c/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index ba90253..2005b5f 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.1.0 release (trunk - unreleased)
 
+OOZIE-3306 Make it possible to override maven dependency plugin version number (asalamon74 via andras.piros)
 OOZIE-3208 "It should never happen" error messages should be more specific to root cause (kmarton via andras.piros)
 OOZIE-2791 ShareLib installation may fail on busy Hadoop clusters (asasvari, kmarton via pbacsko, andras.piros)
 OOZIE-3297 Retry logic does not handle the exception from BulkJPAExecutor properly (andras.piros)