You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2015/05/01 15:36:23 UTC

svn commit: r1677136 - /maven/plugins/trunk/maven-checkstyle-plugin/pom.xml

Author: dennisl
Date: Fri May  1 13:36:22 2015
New Revision: 1677136

URL: http://svn.apache.org/r1677136
Log:
[MCHECKSTYLE-278] Require Java 7

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

Modified: maven/plugins/trunk/maven-checkstyle-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?rev=1677136&r1=1677135&r2=1677136&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/pom.xml Fri May  1 13:36:22 2015
@@ -58,8 +58,8 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <!-- Because Checkstyle 5.9+ requires Java 6 -->
-    <javaVersion>6</javaVersion>
+    <!-- Because Checkstyle 6.2+ requires Java 7 -->
+    <javaVersion>7</javaVersion>
     <maven.compiler.source>1.${javaVersion}</maven.compiler.source>
     <maven.compiler.target>1.${javaVersion}</maven.compiler.target>
     <mavenVersion>2.2.1</mavenVersion>