You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2007/11/22 00:16:31 UTC

svn commit: r597251 - /maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml

Author: aheritier
Date: Wed Nov 21 15:16:29 2007
New Revision: 597251

URL: http://svn.apache.org/viewvc?rev=597251&view=rev
Log:
Add junit dependency to not have a NPE from surefire

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml?rev=597251&r1=597250&r2=597251&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/pom.xml Wed Nov 21 15:16:29 2007
@@ -26,6 +26,13 @@
       </plugin>
     </plugins>
   </build>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+    </dependency>
+  </dependencies>
   <modules>
     <module>my-ejb</module>
     <module>my-ear</module>