Author: niallp
Date: Sun Oct 3 15:58:17 2010
New Revision: 1003983
URL: http://svn.apache.org/viewvc?rev=1003983&view=rev
Log:
Use properties to set source/target version through parent pom config, rather
than adding maven-compiler-plugin config
Modified:
commons/sandbox/javaflow/trunk/pom.xml
Modified: commons/sandbox/javaflow/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/javaflow/trunk/pom.xml?rev=1003983&r1=1003982&r2=1003983&view=diff
==============================================================================
--- commons/sandbox/javaflow/trunk/pom.xml (original)
+++ commons/sandbox/javaflow/trunk/pom.xml Sun Oct 3 15:58:17 2010
@@ -125,21 +125,14 @@
</dependencies>
<properties>
+ <maven.compile.source>1.5</maven.compile.source>
+ <maven.compile.target>1.5</maven.compile.target>
<commons.componentid>javaflow</commons.componentid>
<commons.jira.componentid>12311186</commons.jira.componentid>
</properties>
<build>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>