You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by il...@apache.org on 2012/06/06 10:31:19 UTC

svn commit: r1346778 - /cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml

Author: ilgrosso
Date: Wed Jun  6 08:31:19 2012
New Revision: 1346778

URL: http://svn.apache.org/viewvc?rev=1346778&view=rev
Log:
Adjusting and minimizing dependencies to inject

Modified:
    cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml

Modified: cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml?rev=1346778&r1=1346777&r2=1346778&view=diff
==============================================================================
--- cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml (original)
+++ cocoon/subprojects/cocoon-maven-plugin/trunk/pom.xml Wed Jun  6 08:31:19 2012
@@ -58,16 +58,24 @@
   <dependencies>
     <!-- utility libs -->
     <dependency>
-      <groupId>antlr</groupId>
-      <artifactId>stringtemplate</artifactId>
+      <groupId>org.antlr</groupId>
+      <artifactId>ST4</artifactId>
+      <version>4.0.4</version>
     </dependency>
     <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
+      <version>2.3</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.6</version>
     </dependency>
     <dependency>
       <groupId>commons-configuration</groupId>
       <artifactId>commons-configuration</artifactId>
+      <version>1.8</version>
       <exclusions>
         <exclusion>
           <groupId>avalon-framework</groupId>
@@ -75,10 +83,6 @@
         </exclusion>
       </exclusions>
     </dependency>
-    <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
-    </dependency>
     
     <!-- RCL -->
     <dependency>
@@ -97,19 +101,16 @@
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
       <version>${slf4j.version}</version>
-      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-core</artifactId>
       <version>${logback.version}</version>
-      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
       <version>${logback.version}</version>
-      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
@@ -118,10 +119,15 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging-api</artifactId>
+      <version>1.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jcl-over-slf4j</artifactId>
       <version>${slf4j.version}</version>
-      <scope>provided</scope>
     </dependency>
     
     <!-- Maven specific -->
@@ -153,6 +159,7 @@
     <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
+      <version>1.4.01</version>
     </dependency>
     <dependency>
       <groupId>javax.servlet</groupId>
@@ -176,6 +183,15 @@
       
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.12</version>
+        <configuration>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <version>2.4</version>
         <executions>
@@ -187,6 +203,8 @@
             </goals>
             <configuration>
               <outputFile>${project.build.directory}/classes/plugin-deps</outputFile>
+              <excludeScope>provided</excludeScope>
+              <excludeGroupIds>org.apache.maven.plugins, org.apache.maven, org.codehaus.plexus, junit</excludeGroupIds>
             </configuration>
           </execution>
         </executions>