I have a Maven project that's been employing jOOQ for a while now, and yesterday I tried to update jOOQ from 3.6.1 to 3.7.1. It built fine on my dev machine, then failed in CI with the following error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project jooq-extension: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test failed: There was an error in the forked process[ERROR] java.lang.UnsupportedClassVersionError: org/jooq/QueryPart : Unsupported major.minor version 52.0 It's my understanding that the "Unsupported major.minor version 52.0" error means jOOQ was built in Java 8 in a way that no longer supports Java 7, which tracks with my experience (my dev machine has Java 7 and 8 installed, the CI server only Java 7). Is jOOQ no longer compatible with Java 7? If so, that should probably be in big, bold letters at the top of the release notes. -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
