You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by kr...@apache.org on 2010/12/16 10:32:59 UTC

svn commit: r1049846 - /maven/surefire/trunk/pom.xml

Author: krosenvold
Date: Thu Dec 16 09:32:58 2010
New Revision: 1049846

URL: http://svn.apache.org/viewvc?rev=1049846&view=rev
Log:
o Upgraded compiler plugin to avoid java version bugs

Modified:
    maven/surefire/trunk/pom.xml

Modified: maven/surefire/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/pom.xml?rev=1049846&r1=1049845&r2=1049846&view=diff
==============================================================================
--- maven/surefire/trunk/pom.xml (original)
+++ maven/surefire/trunk/pom.xml Thu Dec 16 09:32:58 2010
@@ -211,6 +211,15 @@
             <tagBase>https://svn.apache.org/repos/asf/maven/surefire/tags</tagBase>
           </configuration>
         </plugin>
+          <plugin>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <version>2.3.2</version>
+            <configuration>
+              <source>1.3</source>
+              <target>1.3</target>
+            </configuration>
+          </plugin>
+
       </plugins>
     </pluginManagement>
   </build>