You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2015/06/03 06:59:55 UTC

svn commit: r1683227 - /myfaces/tobago/trunk/pom.xml

Author: lofwyr
Date: Wed Jun  3 04:59:54 2015
New Revision: 1683227

URL: http://svn.apache.org/r1683227
Log:
make build is running on Jenkins with old maven version - using different version requirements for normal build and a release

Modified:
    myfaces/tobago/trunk/pom.xml

Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?rev=1683227&r1=1683226&r2=1683227&view=diff
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Wed Jun  3 04:59:54 2015
@@ -638,10 +638,7 @@
               <rules>
                 <requireMavenVersion>
                   <!-- 3.3.1 is only required for a release, for a normal build 2.2.1 should be okay -->
-                  <!--Currently (March 2015) the Apache Jenkins server uses 3.1.1-->
-                  <!--todo update Jenkins-->
-                  <!--<version>3.3.1</version> -->
-                  <version>2.2.1</version>
+                  <version>${required.maven.version}</version>
                 </requireMavenVersion>
                 <requirePluginVersions>
                   <message>Best Practice is to always define plugin versions!</message>
@@ -1053,6 +1050,9 @@
              </properties>
            </profile>
        -->
+      <properties>
+        <required.maven.version>3.3.1</required.maven.version>
+      </properties>
       <build>
         <plugins>
           <plugin>
@@ -1496,5 +1496,6 @@
     <maven.compile.encoding>UTF-8</maven.compile.encoding>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <jsf.target>2.0</jsf.target>
+    <required.maven.version>2.2.1</required.maven.version>
   </properties>
 </project>