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

svn commit: r1072463 - /commons/sandbox/digester3/trunk/src/examples/pom.xml

Author: simonetripodi
Date: Sat Feb 19 23:43:49 2011
New Revision: 1072463

URL: http://svn.apache.org/viewvc?rev=1072463&view=rev
Log:
fixed compiler settings on samples parent pom

Modified:
    commons/sandbox/digester3/trunk/src/examples/pom.xml

Modified: commons/sandbox/digester3/trunk/src/examples/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/pom.xml?rev=1072463&r1=1072462&r2=1072463&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/pom.xml (original)
+++ commons/sandbox/digester3/trunk/src/examples/pom.xml Sat Feb 19 23:43:49 2011
@@ -50,8 +50,8 @@
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>2.3.2</version>
                 <configuration>
-                    <source>${javac.src.version}</source>
-                    <target>${javac.target.version}</target>
+                    <source>${maven.compile.source}</source>
+                    <target>${maven.compile.target}</target>
                     <showDeprecation>true</showDeprecation>
                     <showWarnings>true</showWarnings>
                 </configuration>