You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by mc...@apache.org on 2017/09/05 00:14:23 UTC

svn commit: r1807302 - /tiles/maven/trunk/pom/pom.xml

Author: mck
Date: Tue Sep  5 00:14:23 2017
New Revision: 1807302

URL: http://svn.apache.org/viewvc?rev=1807302&view=rev
Log:
Minimum build jdk now 1.8, and minimum java runtime supported 1.7 (as already documented by project)

 - build with minimum version of jdk 1.8
 - compile to compiler and target 1.7
 - updated all other maven plugins to latest versions.

ref: http://mail-archives.apache.org/mod_mbox/tiles-dev/201709.mbox/%3C1504527565.3354878.1094600592.619A0B32%40webmail.messagingengine.com%3E

Modified:
    tiles/maven/trunk/pom/pom.xml

Modified: tiles/maven/trunk/pom/pom.xml
URL: http://svn.apache.org/viewvc/tiles/maven/trunk/pom/pom.xml?rev=1807302&r1=1807301&r2=1807302&view=diff
==============================================================================
--- tiles/maven/trunk/pom/pom.xml (original)
+++ tiles/maven/trunk/pom/pom.xml Tue Sep  5 00:14:23 2017
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
-    <version>13</version>
+    <version>18</version>
   </parent>
   <groupId>org.apache.tiles</groupId>
   <artifactId>tiles-master</artifactId>
@@ -44,7 +44,7 @@
   <inceptionYear>2001</inceptionYear>
 
   <properties>
-      <maven.version.minimum>3.0.5</maven.version.minimum>
+      <maven.version.minimum>3.2.2</maven.version.minimum>
   </properties>
 
   <mailingLists>
@@ -98,7 +98,7 @@
       <id>greddin</id>
       <email>greddin at apache.org</email>
       <roles>
-        <role>PMC Chair</role>
+        <role>PMC Member</role>
       </roles>
     </developer>
     <developer>
@@ -147,7 +147,7 @@
       <email>mck at apache.org</email>
       <url>http://people.apache.org/~mck</url>
       <roles>
-        <role>PMC Member</role>
+        <role>PMC Chair</role>
       </roles>
     </developer>
     <developer>
@@ -209,14 +209,14 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
           <configuration>
-            <source>1.6</source>
-            <target>1.6</target>
+            <source>1.7</source>
+            <target>1.7</target>
           </configuration>
         </plugin>
         <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>wagon-maven-plugin</artifactId>
-            <version>1.0-beta-4</version>
+            <version>1.0-beta-5</version>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -224,7 +224,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-enforcer-plugin</artifactId>
-          <version>1.2</version>
+          <version>1.4.1</version>
           <executions>
             <execution>
               <id>enforce-java</id>
@@ -232,7 +232,7 @@
               <configuration>
                 <rules>
                   <requireJavaVersion>
-                    <version>[1.7.0-45,1.8)</version>
+                    <version>[1.8.0-144,1.9)</version>
                   </requireJavaVersion>
                 </rules>
               </configuration>
@@ -244,12 +244,23 @@
             <!-- required for MSITE-683 -->
             <version>3.3</version>
         </plugin>
+        <plugin>
+            <artifactId>maven-release-plugin</artifactId>
+            <version>2.5.3</version>
+            <inherited>true</inherited>
+            <configuration>
+                <useReleaseProfile>false</useReleaseProfile>
+                <goals>deploy</goals>
+                <arguments>-Papache-release </arguments>
+                <autoVersionSubmodules>true</autoVersionSubmodules>
+            </configuration>
+        </plugin>
     </plugins>
     <extensions>
       <extension>
         <groupId>org.apache.maven.wagon</groupId>
         <artifactId>wagon-ssh</artifactId>
-        <version>2.5</version>
+        <version>2.12</version>
       </extension>
     </extensions>
   </build>
@@ -258,11 +269,11 @@
         <plugins>
             <plugin>
                 <artifactId>maven-surefire-report-plugin</artifactId>
-                <version>2.15</version>
+                <version>2.20</version>
             </plugin>
             <plugin>
                 <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.9.1</version>
+                <version>2.17</version>
                 <configuration>
                     <configLocation>http://svn.apache.org/repos/asf/tiles/maven/trunk/build/tiles_checks_v5.xml
                     </configLocation>
@@ -270,7 +281,7 @@
             </plugin>
             <plugin>
                 <artifactId>maven-jxr-plugin</artifactId>
-                <version>2.3</version>
+                <version>2.5</version>
                 <reportSets>
                     <reportSet>
                         <reports>
@@ -281,14 +292,14 @@
             </plugin>
             <plugin>
                 <artifactId>maven-pmd-plugin</artifactId>
-                <version>3.0.1</version>
+                <version>3.8</version>
                 <configuration>
-                  <targetJdk>1.6</targetJdk>
+                  <targetJdk>1.7</targetJdk>
                 </configuration>
             </plugin>
             <plugin>
                 <artifactId>maven-javadoc-plugin</artifactId>
-                <version>2.8</version>
+                <version>2.10.4</version>
                 <reportSets>
                     <reportSet>
                         <id>aggregated</id>
@@ -339,7 +350,7 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>cobertura-maven-plugin</artifactId>
-                <version>2.5.2</version>
+                <version>2.7</version>
             </plugin>
         </plugins>
     </reporting>