Author: simonetripodi
Date: Mon Sep 19 15:29:58 2011
New Revision: 1172660
URL: http://svn.apache.org/viewvc?rev=1172660&view=rev
Log:
use compiler properties instead of fixed values
Modified:
commons/proper/chain/trunk/pom.xml
Modified: commons/proper/chain/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=1172660&r1=1172659&r2=1172660&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Mon Sep 19 15:29:58 2011
@@ -133,8 +133,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>${maven.compile.source}</source>
+ <target>${maven.compile.target}</target>
</configuration>
</plugin>
<plugin>