You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2009/07/01 23:02:27 UTC

svn commit: r790378 - /maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml

Author: jdcasey
Date: Wed Jul  1 21:02:26 2009
New Revision: 790378

URL: http://svn.apache.org/viewvc?rev=790378&view=rev
Log:
Adding a second dep in the pom to keep jar-with-deps from being empty

Modified:
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml

Modified: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml?rev=790378&r1=790377&r2=790378&view=diff
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml (original)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-306/pom.xml Wed Jul  1 21:02:26 2009
@@ -13,6 +13,13 @@
 
   <dependencies>
     <dependency>
+      <!-- Keep the jar-with-dependencies from being file-less... -->
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>