Author: rkanter
Date: Mon Feb 4 18:03:38 2013
New Revision: 1442268
URL: http://svn.apache.org/viewvc?rev=1442268&view=rev
Log:
OOZIE-1136 Fix MiniOozie (rkanter)
Modified:
oozie/branches/branch-3.3/core/pom.xml
oozie/branches/branch-3.3/minitest/pom.xml
oozie/branches/branch-3.3/release-log.txt
Modified: oozie/branches/branch-3.3/core/pom.xml
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/core/pom.xml?rev=1442268&r1=1442267&r2=1442268&view=diff
==============================================================================
--- oozie/branches/branch-3.3/core/pom.xml (original)
+++ oozie/branches/branch-3.3/core/pom.xml Mon Feb 4 18:03:38 2013
@@ -611,10 +611,9 @@
<configuration>
<includes>
<include>**/XTestCase.class</include>
- <include>**/XTestCase$1.class</include>
<include>**/XFsTestCase.class</include>
<include>**/MiniOozieTestCase.class</include>
-
<include>**/XTestCase$Predicate.class</include>
+ <include>**/XTestCase$*.class</include>
</includes>
</configuration>
</execution>
Modified: oozie/branches/branch-3.3/minitest/pom.xml
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/minitest/pom.xml?rev=1442268&r1=1442267&r2=1442268&view=diff
==============================================================================
--- oozie/branches/branch-3.3/minitest/pom.xml (original)
+++ oozie/branches/branch-3.3/minitest/pom.xml Mon Feb 4 18:03:38 2013
@@ -72,13 +72,13 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>0.20.104.2</version>
+ <version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-test</artifactId>
- <version>0.20.104.2</version>
+ <version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -93,6 +93,18 @@
<version>1.5.2</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.10</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>jsr311-api</artifactId>
+ <version>0.11</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
Modified: oozie/branches/branch-3.3/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1442268&r1=1442267&r2=1442268&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Feb 4 18:03:38 2013
@@ -1,5 +1,6 @@
-- Oozie 3.3.2 (unreleased)
+OOZIE-1136 Fix MiniOozie (rkanter)
OOZIE-1051 Repeating Errors for workflows that were allreday Killed (rkanter)
OOZIE-1140 TestLogStreamer.testStreamLog fails when its started within the
first 4 seconds after the hour (rkanter)
OOZIE-1153 comma separated list in <archive> and <file> for
JavaActionExecutor. (jaoki via tucu)