-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to Java 11 #818
Comments
The alternative would be to require some external |
Also before we move on to require Java 11 as base, we should start having CI monitor that what we have today is actually compatible with Java 11 - at least in JVM mode. |
@dmlloyd should I close this one? Looks like the effort is now made in separate issues specific to GraalVM? |
Yep this is out of date. |
Please see #5691 for the up-to-date migration steps. |
This is the blanket issue to cover switching to Java 11. Here's the check list:
com.oracle.svm.driver
package from the SubstrateVM build (the default coordinates arecom.oracle.substratevm:svm-driver
; usemx maven-install
to install it locally after checking out & building with thevm-1.0.0-rc11
tag under Java 11)org.jboss.shamrock.creator.phase.nativeimage.NativeImagePhase
to usecom.oracle.svm.driver.NativeImage
from the driver artifact directly for normal builds, and via container execution ofjava
(11) for container buildsGRAALVM_HOME
<release>11</release>
in the compiler plugin, not-source
/-target
)Note that some of these steps will have to change if the class loading changes come in first.
The text was updated successfully, but these errors were encountered: