You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/02/13 00:43:50 UTC

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

Author: niallp
Date: Thu Feb 12 23:43:50 2009
New Revision: 743933

URL: http://svn.apache.org/viewvc?rev=743933&view=rev
Log:
Use properties to configure the compiler plugin for Java 1.5 through the commons-parent pom

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=743933&r1=743932&r2=743933&view=diff
==============================================================================
--- commons/sandbox/xml/trunk/pom.xml (original)
+++ commons/sandbox/xml/trunk/pom.xml Thu Feb 12 23:43:50 2009
@@ -62,19 +62,14 @@
   </distributionManagement>
 
   <properties>
+    <maven.compile.source>1.5</maven.compile.source>
+    <maven.compile.target>1.5</maven.compile.target>
     <commons.componentid>xml</commons.componentid>
     <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>