You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ju...@apache.org on 2009/02/09 15:32:25 UTC

svn commit: r742526 - /commons/sandbox/xml/trunk/pom.xml

Author: jukka
Date: Mon Feb  9 14:32:25 2009
New Revision: 742526

URL: http://svn.apache.org/viewvc?rev=742526&view=rev
Log:
xml: Use Java 5 as the base platform

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

Modified: commons/sandbox/xml/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/xml/trunk/pom.xml?rev=742526&r1=742525&r2=742526&view=diff
==============================================================================
--- commons/sandbox/xml/trunk/pom.xml (original)
+++ commons/sandbox/xml/trunk/pom.xml Mon Feb  9 14:32:25 2009
@@ -66,4 +66,16 @@
     <commons.jira.componentid>12312652</commons.jira.componentid>
   </properties>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>