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 2010/06/07 12:33:52 UTC

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

Author: olamy
Date: Mon Jun  7 10:33:52 2010
New Revision: 952182

URL: http://svn.apache.org/viewvc?rev=952182&view=rev
Log:
BuildClasspathMojo.java is 1.5 required (use Pattern.quote() ).

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=952182&r1=952181&r2=952182&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/pom.xml Mon Jun  7 10:33:52 2010
@@ -237,6 +237,18 @@ under the License.
   </dependencies>
 
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.1</version>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>  
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>