Repository: oozie Updated Branches: refs/heads/master 16fa65946 -> c0cc536a5
OOZIE-2036 Drop support for Java 1.6 (gezapeti via jaydeepvishwakarma) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/c0cc536a Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/c0cc536a Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/c0cc536a Branch: refs/heads/master Commit: c0cc536a5fe492584f7b9e5fbf6be20d9efc4054 Parents: 16fa659 Author: jvishwakarma <[email protected]> Authored: Fri Aug 12 14:09:49 2016 +0530 Committer: jvishwakarma <[email protected]> Committed: Fri Aug 12 14:09:49 2016 +0530 ---------------------------------------------------------------------- docs/src/site/twiki/DG_QuickStart.twiki | 10 +++++----- docs/src/site/twiki/ENG_Building.twiki | 6 +++--- docs/src/site/twiki/ENG_MiniOozie.twiki | 2 +- pom.xml | 8 +++++--- release-log.txt | 1 + 5 files changed, 15 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/c0cc536a/docs/src/site/twiki/DG_QuickStart.twiki ---------------------------------------------------------------------- diff --git a/docs/src/site/twiki/DG_QuickStart.twiki b/docs/src/site/twiki/DG_QuickStart.twiki index 0bc993f..2cfaa51 100644 --- a/docs/src/site/twiki/DG_QuickStart.twiki +++ b/docs/src/site/twiki/DG_QuickStart.twiki @@ -14,7 +14,7 @@ For detailed install and configuration instructions refer to [[AG_Install][Oozie ---+++ System Requirements: * Unix box (tested on Mac OS X and Linux) - * Java JDK 1.6+ + * Java JDK 1.7+ * Maven 3.0.1+ * Hadoop 0.20.2+ * Pig 0.7+ @@ -66,13 +66,13 @@ More details on building Oozie can be found on the [[ENG_Building][Building Oozi ---+++ System Requirements * Unix (tested in Linux and Mac OS X) - * Java 1.6+ + * Java 1.7+ * Hadoop * [[http://hadoop.apache.org][Apache Hadoop]] (tested with 1.0.0 & 0.23.1) * ExtJS library (optional, to enable Oozie webconsole) * [[http://dev.sencha.com/deploy/ext-2.2.zip][ExtJS 2.2]] -The Java 1.6+ =bin= directory should be in the command path. +The Java 1.7+ =bin= directory should be in the command path. ---+++ Server Installation @@ -204,9 +204,9 @@ Refer to the [[DG_Examples][Running the Examples]] document for details on runni ---+++ System Requirements * Unix (tested in Linux and Mac OS X) - * Java 1.6+ + * Java 1.7+ -The Java 1.6+ =bin= directory should be in the command path. +The Java 1.7+ =bin= directory should be in the command path. ---+++ Client Installation http://git-wip-us.apache.org/repos/asf/oozie/blob/c0cc536a/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 8454c36..d138817 100644 --- a/docs/src/site/twiki/ENG_Building.twiki +++ b/docs/src/site/twiki/ENG_Building.twiki @@ -9,7 +9,7 @@ ---++ System Requirements * Unix box (tested on Mac OS X and Linux) - * Java JDK 1.6+ + * Java JDK 1.7+ * [[http://maven.apache.org/][Maven 3.0.1+]] * [[http://hadoop.apache.org/core/releases.html][Hadoop 0.20.2+]] * [[http://hadoop.apache.org/pig/releases.html][Pig 0.7+]] @@ -52,8 +52,8 @@ $ ssh localhost ---++ Building with different Java Versions -Oozie requires a minimum Java version of 1.6. Any newer version can be used but by default bytecode will be generated -which is compatible with 1.6. This can be changed by specifying the build property *targetJavaVersion*. +Oozie requires a minimum Java version of 1.7. Any newer version can be used but by default bytecode will be generated +which is compatible with 1.7. This can be changed by specifying the build property *targetJavaVersion*. ---++ Building and Testing Oozie http://git-wip-us.apache.org/repos/asf/oozie/blob/c0cc536a/docs/src/site/twiki/ENG_MiniOozie.twiki ---------------------------------------------------------------------- diff --git a/docs/src/site/twiki/ENG_MiniOozie.twiki b/docs/src/site/twiki/ENG_MiniOozie.twiki index 97c0d07..5401614 100644 --- a/docs/src/site/twiki/ENG_MiniOozie.twiki +++ b/docs/src/site/twiki/ENG_MiniOozie.twiki @@ -9,7 +9,7 @@ ---++ System Requirements * Unix box (tested on Mac OS X and Linux) - * Java JDK 1.6+ + * Java JDK 1.7+ * Eclipse (tested on 3.5 and 3.6) * [[http://maven.apache.org/][Maven 3.0.1+]] http://git-wip-us.apache.org/repos/asf/oozie/blob/c0cc536a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a1c9357..9e06e89 100644 --- a/pom.xml +++ b/pom.xml @@ -45,7 +45,9 @@ </organization> <properties> - <targetJavaVersion>1.6</targetJavaVersion> + <targetJavaVersion>1.7</targetJavaVersion> + <sourceJavaVersion>1.7</sourceJavaVersion> + <minJavaVersion>1.7</minJavaVersion> <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName> <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl> @@ -1622,7 +1624,7 @@ <version>[3.0.0,)</version> </requireMavenVersion> <requireJavaVersion> - <version>1.6</version> + <version>${minJavaVersion}</version> </requireJavaVersion> </rules> </configuration> @@ -1654,7 +1656,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>1.6</source> + <source>${sourceJavaVersion}</source> <target>${targetJavaVersion}</target> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/oozie/blob/c0cc536a/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 86a68c5..fc2854b 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.3.0 release (trunk - unreleased) +OOZIE-2036 Drop support for Java 1.6 (gezapeti via jaydeepvishwakarma) OOZIE-2512 ShareLibservice returns incorrect path for jar (satishsaley via puru) OOZIE-2508 Documentation change for Coord action rerun [OOZIE-1735] (satishsaley via puru) OOZIE-2628 Fix Workflow EL function return types in Documentation (abhishekbafna via jaydeepvishwakarma)
