You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/11/07 22:26:25 UTC

svn commit: r331599 - /maven/continuum/trunk/continuum-plexus-application/pom.xml

Author: evenisse
Date: Mon Nov  7 13:26:22 2005
New Revision: 331599

URL: http://svn.apache.org/viewcvs?rev=331599&view=rev
Log:
Fix plexus app generation. log4j was missing.

Modified:
    maven/continuum/trunk/continuum-plexus-application/pom.xml

Modified: maven/continuum/trunk/continuum-plexus-application/pom.xml
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/pom.xml?rev=331599&r1=331598&r2=331599&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/pom.xml (original)
+++ maven/continuum/trunk/continuum-plexus-application/pom.xml Mon Nov  7 13:26:22 2005
@@ -96,7 +96,6 @@
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
       <version>1.2.8</version>
-      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>plexus</groupId>
@@ -138,6 +137,12 @@
       <artifactId>plexus-service-jetty</artifactId>
       <version>1.0-alpha-3</version>
       <type>plexus-service</type>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
@@ -165,6 +170,12 @@
       <artifactId>plexus-service-xmlrpc</artifactId>
       <version>1.0-alpha-3</version>
       <type>plexus-service</type>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.scm</groupId>
@@ -191,4 +202,4 @@
       <scope>runtime</scope>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>