Repository: oozie Updated Branches: refs/heads/master ccccd66a2 -> d9a31e454
OOZIE-2180 Oozie hive2 should explicitly depend on commons-io rather than transitive dependency of hive-exec (bzhang) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/d9a31e45 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/d9a31e45 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/d9a31e45 Branch: refs/heads/master Commit: d9a31e4549bd2098d3906bc7099fe8c681bec5fc Parents: ccccd66 Author: Bowen Zhang <[email protected]> Authored: Mon Mar 23 11:32:27 2015 -0700 Committer: Bowen Zhang <[email protected]> Committed: Mon Mar 23 11:33:07 2015 -0700 ---------------------------------------------------------------------- release-log.txt | 1 + sharelib/hive2/pom.xml | 6 ++++++ 2 files changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/d9a31e45/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 4c3d4f9..2728efb 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.2.0 release (trunk - unreleased) +OOZIE-2180 Oozie hive2 should explicitly depend on commons-io rather than transitive dependency of hive-exec (bzhang) OOZIE-2177 Parameterize javadoc plugin configuration (ryota) OOZIE-2169 Fix return type for fs:dirSize, fs:fileSize and fs:blockSize in WF spec (apivovarov via puru) OOZIE-2171 Some error code messages are not parsed correctly due to unescaped single quote (rkanter) http://git-wip-us.apache.org/repos/asf/oozie/blob/d9a31e45/sharelib/hive2/pom.xml ---------------------------------------------------------------------- diff --git a/sharelib/hive2/pom.xml b/sharelib/hive2/pom.xml index 5e9dc72..41eade9 100644 --- a/sharelib/hive2/pom.xml +++ b/sharelib/hive2/pom.xml @@ -125,6 +125,12 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <scope>compile</scope> + </dependency> </dependencies> <build>
