You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2014/08/22 14:50:31 UTC

svn commit: r1619786 - /maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml

Author: rfscholte
Date: Fri Aug 22 12:50:31 2014
New Revision: 1619786

URL: http://svn.apache.org/r1619786
Log:
Fix IT for M2.2.1, which still uses source/target 1.4 by default

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml?rev=1619786&r1=1619785&r2=1619786&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/it/check-pass/pom.xml Fri Aug 22 12:50:31 2014
@@ -39,6 +39,15 @@
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>@pom.version@</version>
         <executions>