You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2016/05/28 10:10:18 UTC

svn commit: r1745857 - /maven/plugins/trunk/maven-toolchains-plugin/pom.xml

Author: khmarbaise
Date: Sat May 28 10:10:17 2016
New Revision: 1745857

URL: http://svn.apache.org/viewvc?rev=1745857&view=rev
Log:
[MTOOLCHAINS-15] Upgrade Maven 3.X Only JDK 1.6
 o Upgraded maven version to 3.0 minimum.
 o Changed dependencies to maven-core 3.0
 o Changed to use provided scope for annotations

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

Modified: maven/plugins/trunk/maven-toolchains-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-toolchains-plugin/pom.xml?rev=1745857&r1=1745856&r2=1745857&view=diff
==============================================================================
--- maven/plugins/trunk/maven-toolchains-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-toolchains-plugin/pom.xml Sat May 28 10:10:17 2016
@@ -60,7 +60,7 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <mavenVersion>2.2.1</mavenVersion>
+    <mavenVersion>3.0</mavenVersion>
   </properties>
 
   <dependencies>
@@ -71,12 +71,13 @@ under the License.
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-toolchain</artifactId>
+      <artifactId>maven-core</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>