oops, forgot the JIRA link [1]... :-) [1] https://issues.apache.org/jira/browse/OPENJPA-1520
On Tue, Feb 23, 2010 at 10:38 AM, Kevin Sutter <[email protected]> wrote: > Hi, > Do we have some Java 5 customers of OpenJPA that could test out the latest > 2.0.x (trunk) build? The history of the proposed changes for Java 5 vs Java > 6 can be found in this JIRA [1]. With Donald's latest commit below, we are > building with Java 6, but targeting the bytecode generation to 1.5. It > would be great if we could get some confirmation that this change is > suitable for our customer set. Thanks for your help! > > Kevin > > ---------- Forwarded message ---------- > From: <[email protected]> > Date: Tue, Feb 23, 2010 at 10:25 AM > Subject: svn commit: r915410 - in /openjpa/trunk: openjpa-examples/pom.xml > pom.xml > To: [email protected] > > > 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> > > > >
