Repository: oozie Updated Branches: refs/heads/master 18401e614 -> 74cb3b0bc
OOZIE-1848 Pig actions fail due to missing joda-time jar from pig sharelib (bzhang) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/74cb3b0b Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/74cb3b0b Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/74cb3b0b Branch: refs/heads/master Commit: 74cb3b0bcd2dc2a712bd85c4d3b27fb2a57784fd Parents: 18401e6 Author: Bowen Zhang <[email protected]> Authored: Fri May 30 15:35:14 2014 -0700 Committer: Bowen Zhang <[email protected]> Committed: Fri May 30 15:35:14 2014 -0700 ---------------------------------------------------------------------- release-log.txt | 1 + sharelib/pig/pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/74cb3b0b/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 9c18798..4e909e3 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.1.0 release (trunk - unreleased) +OOZIE-1848 Pig actions fail due to missing joda-time jar from pig sharelib (bzhang) OOZIE-1319 "LAST_ONLY" in execution control for coordinator job still runs all the actions (rkanter) OOZIE-1862 Add hadoop token file location for Hive/Tez jobs (venkatnrangan via bzhang) OOZIE-1775 TestEventGeneration.testCoordinatorActionEvent is failing and CoordRerunX should generate event (mona) http://git-wip-us.apache.org/repos/asf/oozie/blob/74cb3b0b/sharelib/pig/pom.xml ---------------------------------------------------------------------- diff --git a/sharelib/pig/pom.xml b/sharelib/pig/pom.xml index 98607f5..6f99523 100644 --- a/sharelib/pig/pom.xml +++ b/sharelib/pig/pom.xml @@ -117,12 +117,12 @@ <dependency> <groupId>dk.brics.automaton</groupId> <artifactId>automaton</artifactId> - <scope>provided</scope> + <scope>compile</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> - <scope>provided</scope> + <scope>compile</scope> </dependency> </dependencies>
