You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2014/01/06 11:19:59 UTC

[1/2] git commit: add detail on when we can remove the explicit rat version

Updated Branches:
  refs/heads/master 4a44036ad -> 3480789f1


add detail on when we can remove the explicit rat version


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/1f3182d7
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/1f3182d7
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/1f3182d7

Branch: refs/heads/master
Commit: 1f3182d7e63470f2af13a4d1f2b90b9797af3ecf
Parents: 4a44036
Author: Stephen Connolly <st...@gmail.com>
Authored: Mon Jan 6 10:13:16 2014 +0000
Committer: Stephen Connolly <st...@gmail.com>
Committed: Mon Jan 6 10:13:16 2014 +0000

----------------------------------------------------------------------
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/1f3182d7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7e24a3f..c5782bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -364,7 +364,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.5.1</version>
+          <version>3.1</version>
           <configuration>
             <source>1.6</source>
             <target>1.6</target>
@@ -381,7 +381,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.12</version>
+          <version>2.16</version>
           <configuration>
             <argLine>-Xmx256m</argLine>
           </configuration>
@@ -450,7 +450,7 @@
         <plugin>
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
-          <version>0.10</version>
+          <version>0.10</version><!-- TODO remove when upgrading parent to 24 -->
           <configuration>
             <excludes>
               <exclude>src/test/resources*/**</exclude>
@@ -465,7 +465,7 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>animal-sniffer-maven-plugin</artifactId>
-        <version>1.6</version>
+        <version>1.9</version>
         <configuration>
           <signature>
             <groupId>org.codehaus.mojo.signature</groupId>
@@ -590,7 +590,7 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-jxr-plugin</artifactId>
-            <version>2.3</version>
+            <version>2.4</version>
             <reportSets>
               <reportSet>
                 <id>aggregate</id>


[2/2] git commit: [MNG-5558] JVM used to run Maven must now be Java 1.6 or newer - can still compile and run tests with older JVMs via toolchains

Posted by st...@apache.org.
[MNG-5558] JVM used to run Maven must now be Java 1.6 or newer - can still compile and run tests with older JVMs via toolchains


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/3480789f
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/3480789f
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/3480789f

Branch: refs/heads/master
Commit: 3480789f18fc8a8832108bd9b588698b91152f87
Parents: 1f3182d
Author: Stephen Connolly <st...@gmail.com>
Authored: Mon Jan 6 10:19:53 2014 +0000
Committer: Stephen Connolly <st...@gmail.com>
Committed: Mon Jan 6 10:19:53 2014 +0000

----------------------------------------------------------------------
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/3480789f/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 6b93808..8c4b75a 100644
--- a/build.xml
+++ b/build.xml
@@ -223,7 +223,7 @@ Do you want to continue?</input>
     </path>
 
     <mkdir dir="bootstrap/target/classes" />
-    <javac destdir="bootstrap/target/classes" encoding="UTF-8" source="1.5" target="1.5" debug="true" includeAntRuntime="false">
+    <javac destdir="bootstrap/target/classes" encoding="UTF-8" source="1.6" target="1.6" debug="true" includeAntRuntime="false">
       <src refid="sources" />
       <classpath refid="pom.pathid" />
     </javac>