Hey guys I'm working to make the tests compatible with both Java 8 and Java 11 version.
Right now, I'm at the failover <https://github.com/apache/tomee/tree/master/itests/failover> project that has this issue: java.lang.IllegalAccessException: class org.apache.openejb.loader.BasicURLClassPath cannot access class jdk.internal.loader.URLClassPath (in module java.base) because module java.base does not export jdk.internal.loader to unnamed module @4c6e276e at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:361) There are two ways to solve it; - the first one is using the filemodule-info.java - Using the add-module argument at maven. <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <arg>--add-modules</arg> <arg>dk.internal.loader</arg> </compilerArgs> </configuration></plugin> However, both make unavailable the situation to run Java 8. I still working to solve it. On Fri, Mar 1, 2019 at 2:11 PM Jonathan Gallimore < [email protected]> wrote: > Killed of the builds and forced a new one. > https://ci.apache.org/builders/tomee-trunk-ubuntu-jvm8/builds/1048 > > Jon > > On Fri, Mar 1, 2019 at 4:28 PM j4fm <[email protected]> wrote: > > > Ah yeah that makes sense. > > > > It won't let me stop the current stuck build. Would you be able to? > > > > From the logs it looks like it succeeds up until the point it's frozen... > > I'm not sure what's up with it. Have you seen it freeze like this > before? > > Maybe it's an issue with the CI agent instead? > > > > > > > > -- > > Sent from: > > http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html > > >
