You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2011/10/28 15:02:17 UTC

svn commit: r1190292 - /maven/plugins/trunk/maven-dependency-plugin/pom.xml

Author: olamy
Date: Fri Oct 28 13:02:17 2011
New Revision: 1190292

URL: http://svn.apache.org/viewvc?rev=1190292&view=rev
Log:
commons-lang is really used not only for compile

Modified:
    maven/plugins/trunk/maven-dependency-plugin/pom.xml

Modified: maven/plugins/trunk/maven-dependency-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/pom.xml?rev=1190292&r1=1190291&r2=1190292&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/pom.xml Fri Oct 28 13:02:17 2011
@@ -200,6 +200,12 @@ under the License.
     </dependency>
 
     <dependency>
+    	<groupId>commons-lang</groupId>
+    	<artifactId>commons-lang</artifactId>
+    	<version>2.6</version>
+    </dependency>
+
+    <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId>
       <version>3.2.1</version>
@@ -236,12 +242,7 @@ under the License.
       <version>1.9</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-    	<groupId>commons-lang</groupId>
-    	<artifactId>commons-lang</artifactId>
-    	<version>2.6</version>
-    	<scope>compile</scope>
-    </dependency>
+
   </dependencies>
 
   <build>