Author: simonetripodi
Date: Mon Sep 19 15:30:11 2011
New Revision: 1172662
URL: http://svn.apache.org/viewvc?rev=1172662&view=rev
Log:
use compiler properties instead of fixed values
Modified:
commons/proper/ognl/trunk/pom.xml
Modified: commons/proper/ognl/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/ognl/trunk/pom.xml?rev=1172662&r1=1172661&r2=1172662&view=diff
==============================================================================
--- commons/proper/ognl/trunk/pom.xml (original)
+++ commons/proper/ognl/trunk/pom.xml Mon Sep 19 15:30:11 2011
@@ -199,8 +199,8 @@ limitations under the License.
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>${maven.compile.source}</source>
+ <target>${maven.compile.target}</target>
</configuration>
<executions>
<execution>
@@ -210,8 +210,8 @@ limitations under the License.
<goal>testCompile</goal>
</goals>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>${maven.compile.source}</source>
+ <target>${maven.compile.target}</target>
</configuration>
</execution>
</executions>