You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2009/02/12 11:03:45 UTC

svn commit: r743676 - /commons/sandbox/compress/trunk/pom.xml

Author: bodewig
Date: Thu Feb 12 10:03:44 2009
New Revision: 743676

URL: http://svn.apache.org/viewvc?rev=743676&view=rev
Log:
Explicitly set javac source and target to 1.4, submitted by Christian Grobmeier, SANDBOX-288

Modified:
    commons/sandbox/compress/trunk/pom.xml

Modified: commons/sandbox/compress/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/compress/trunk/pom.xml?rev=743676&r1=743675&r2=743676&view=diff
==============================================================================
--- commons/sandbox/compress/trunk/pom.xml (original)
+++ commons/sandbox/compress/trunk/pom.xml Thu Feb 12 10:03:44 2009
@@ -85,9 +85,17 @@
   </properties> 
 
   <build>
-    <!-- turn off cobertura until we figure out why it's hanging -->
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <!-- turn off cobertura until we figure out why it's hanging -->
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
         <configuration>