Author: veithen Date: Sat Oct 9 16:14:55 2010 New Revision: 1006179 URL: http://svn.apache.org/viewvc?rev=1006179&view=rev Log: WSCOMMONS-556: Changed the target version option of the Java compiler to 1.5. We depend on classes from the 1.5 API anyway, so we may as well produce byte code for that version. This may generate slightly more efficient code. Note that the source version is still 1.3 to avoid warnings about unchecked method calls (and to be able to restore Java 1.4 compatibility if the need arises).
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml Modified: webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml?rev=1006179&r1=1006178&r2=1006179&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-parent/pom.xml Sat Oct 9 16:14:55 2010 @@ -289,7 +289,7 @@ <inherited>true</inherited> <configuration> <source>1.3</source> - <target>1.3</target> + <target>1.5</target> </configuration> </plugin> <plugin>