Author: dwoods
Date: Tue Feb 23 16:25:19 2010
New Revision: 915410
URL: http://svn.apache.org/viewvc?rev=915410&view=rev
Log:
OPENJPA-1520 Require Java SE 6 to compile but target Java SE 5 so users can
still run trunk on 1.5 and 1.6 JVMs for now, given the lack of performance
improvements found with the patch to drop JDBC3 support...
Modified:
openjpa/trunk/openjpa-examples/pom.xml
openjpa/trunk/pom.xml
Modified: openjpa/trunk/openjpa-examples/pom.xml
URL:
http://svn.apache.org/viewvc/openjpa/trunk/openjpa-examples/pom.xml?rev=915410&r1=915409&r2=915410&view=diff
==============================================================================
--- openjpa/trunk/openjpa-examples/pom.xml (original)
+++ openjpa/trunk/openjpa-examples/pom.xml Tue Feb 23 16:25:19 2010
@@ -62,8 +62,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
<!--
need to skip reversemapping since it depends on
classes that are generated by the build.xml file
Modified: openjpa/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/openjpa/trunk/pom.xml?rev=915410&r1=915409&r2=915410&view=diff
==============================================================================
--- openjpa/trunk/pom.xml (original)
+++ openjpa/trunk/pom.xml Tue Feb 23 16:25:19 2010
@@ -733,10 +733,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
+ <version>2.1</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.5</source>
+ <target>1.5</target>
</configuration>
</plugin>
<plugin>