You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2015/04/11 19:00:33 UTC

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

Author: hboutemy
Date: Sat Apr 11 17:00:33 2015
New Revision: 1672900

URL: http://svn.apache.org/r1672900
Log:
switch javaVersion property to 6 instead of old-style 1.6

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=1672900&r1=1672899&r2=1672900&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/pom.xml Sat Apr 11 17:00:33 2015
@@ -59,9 +59,9 @@ under the License.
 
   <properties>
     <!-- Because Checkstyle 5.9+ requires Java 6 -->
-    <javaVersion>1.6</javaVersion>
-    <maven.compiler.source>${javaVersion}</maven.compiler.source>
-    <maven.compiler.target>${javaVersion}</maven.compiler.target>
+    <javaVersion>6</javaVersion>
+    <maven.compiler.source>1.${javaVersion}</maven.compiler.source>
+    <maven.compiler.target>1.${javaVersion}</maven.compiler.target>
     <mavenVersion>2.2.1</mavenVersion>
     <checkstyleVersion>6.1.1</checkstyleVersion>
     <doxiaVersion>1.4</doxiaVersion>
@@ -363,15 +363,6 @@ under the License.
             <version>${project.version}</version>
           </plugin>
           <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-plugin-plugin</artifactId>
-            <configuration>
-              <requirements>
-                <jdk>${javaVersion}</jdk>
-              </requirements>
-            </configuration>
-          </plugin>
-          <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>l10n-maven-plugin</artifactId>
             <version>1.0-alpha-2</version>