You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2016/03/15 11:03:33 UTC

svn commit: r1735050 - /sling/trunk/parent/pom.xml

Author: kwin
Date: Tue Mar 15 10:03:33 2016
New Revision: 1735050

URL: http://svn.apache.org/viewvc?rev=1735050&view=rev
Log:
SLING-5606 require Java 7 for the build

Modified:
    sling/trunk/parent/pom.xml

Modified: sling/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=1735050&r1=1735049&r2=1735050&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Tue Mar 15 10:03:33 2016
@@ -117,7 +117,7 @@
     <build>
         <plugins>
 
-            <!-- Require Java 6 or higher for building -->
+            <!-- Require Java 7 or higher for building (as bnd since version 3.0 is built with Java 7) -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-enforcer-plugin</artifactId>
@@ -132,9 +132,9 @@
                                 <requireJavaVersion>
                                     <message>
                                         Apache Sling must be compiled with Java
-                                        6 or higher
+                                        7 or higher
                                     </message>
-                                    <version>1.6.0</version>
+                                    <version>1.7.0</version>
                                 </requireJavaVersion>
                             </rules>
                         </configuration>