Merge pull request #273811 from jlesquembre/jdk21-default-stg

default jdk: 19 -> 21
This commit is contained in:
Martin Weinelt 2024-03-09 12:42:39 +01:00 committed by GitHub
commit 775b2f0fa6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15344,8 +15344,8 @@ with pkgs;
temurin-bin-8 = javaPackages.compiler.temurin-bin.jdk-8;
temurin-jre-bin-8 = javaPackages.compiler.temurin-bin.jre-8;
temurin-bin = temurin-bin-19;
temurin-jre-bin = temurin-jre-bin-19;
temurin-bin = temurin-bin-21;
temurin-jre-bin = temurin-jre-bin-21;
semeru-bin-17 = javaPackages.compiler.semeru-bin.jdk-17;
semeru-jre-bin-17 = javaPackages.compiler.semeru-bin.jre-17;
@ -16342,8 +16342,8 @@ with pkgs;
jdk21_headless = openjdk21_headless;
/* default JDK */
jdk = jdk19;
jdk_headless = jdk19_headless;
jdk = jdk21;
jdk_headless = jdk21_headless;
# Since the introduction of the Java Platform Module System in Java 9, Java
# no longer ships a separate JRE package.