You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by ml...@apache.org on 2013/04/16 23:29:08 UTC

svn commit: r1468618 - in /incubator/tez/trunk: tez-mapreduce/pom.xml tez-yarn-application/pom.xml tez-yarn-client/pom.xml

Author: mliddell
Date: Tue Apr 16 21:29:08 2013
New Revision: 1468618

URL: http://svn.apache.org/r1468618
Log:
TEZ-2: Build doesn't include Junit dependency

Modified:
    incubator/tez/trunk/tez-mapreduce/pom.xml
    incubator/tez/trunk/tez-yarn-application/pom.xml
    incubator/tez/trunk/tez-yarn-client/pom.xml

Modified: incubator/tez/trunk/tez-mapreduce/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tez/trunk/tez-mapreduce/pom.xml?rev=1468618&r1=1468617&r2=1468618&view=diff
==============================================================================
--- incubator/tez/trunk/tez-mapreduce/pom.xml (original)
+++ incubator/tez/trunk/tez-mapreduce/pom.xml Tue Apr 16 21:29:08 2013
@@ -58,5 +58,11 @@
       <artifactId>mockito-all</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: incubator/tez/trunk/tez-yarn-application/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tez/trunk/tez-yarn-application/pom.xml?rev=1468618&r1=1468617&r2=1468618&view=diff
==============================================================================
--- incubator/tez/trunk/tez-yarn-application/pom.xml (original)
+++ incubator/tez/trunk/tez-yarn-application/pom.xml Tue Apr 16 21:29:08 2013
@@ -52,5 +52,11 @@
       <artifactId>mockito-all</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>

Modified: incubator/tez/trunk/tez-yarn-client/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tez/trunk/tez-yarn-client/pom.xml?rev=1468618&r1=1468617&r2=1468618&view=diff
==============================================================================
--- incubator/tez/trunk/tez-yarn-client/pom.xml (original)
+++ incubator/tez/trunk/tez-yarn-client/pom.xml Tue Apr 16 21:29:08 2013
@@ -46,6 +46,13 @@
       <groupId>org.apache.tez</groupId>
       <artifactId>tez-mapreduce</artifactId>
     </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>