Closed helospark closed 6 years ago
cannot start on final jdk:
Caused by: java.lang.ArrayIndexOutOfBoundsException: 1
at org.jadira.usertype.spi.utils.runtime.JavaVersion.<clinit>(JavaVersion.java:16)
... 97 common frames omitted
Is there an update here? I'm going through the same problem. cc/ @chrisphe
Any update here? Should be a simple fix to apply.
I've applied the supplied pr... apologies for not getting on to this sooner
Awesome. Do you think you could do a release too?
Yes, will be building one, there's a few other issues I want to close off, but should be very soon.
Background
In Java 9 the JEP223 has changed the format of java.version and now breaking the functionality of org.jadira.usertype.spi.utils.runtime.JavaVersion class. The representation of java.version will return as "9", "9.x.y", "9-ea", instead of the earlier format of 1.9.*
For early access release returns the string "9-ea", and therefore JavaVersion class throws an exception:
AC