Fix: Java 17 bytecode target on paper module (fixes #3661) - #3662
Merged
Conversation
Commit 98856a8 only set compileJava release=17 on the root project. The paper subproject still built PaperPlatformProvider (and everything else under paper/src) with the JDK 25 toolchain and no release cap, producing class file version 69, which crashes servers on Java 17-21 with UnsupportedClassVersionError and disables the plugin on load. Setting options.release=17 alone breaks :paper:compileClasspath resolution, since paper-api's dev-bundle metadata is published as JVM-25-only; Gradle infers a TargetJvmVersion=17 requirement from the release flag and refuses to resolve it. Pinning compileClasspath/ runtimeClasspath/testCompileClasspath/testRuntimeClasspath to TargetJvmVersion=25 keeps dependency resolution on the JDK 25 toolchain while compileJava still emits Java 17-compatible bytecode.
dmulloy2
approved these changes
Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Commit 98856a8 only set compileJava release=17 on the root project. The paper subproject still built PaperPlatformProvider (and everything else under paper/src) with the JDK 25 toolchain and no release cap, producing class file version 69, which crashes servers on Java 17-21 with UnsupportedClassVersionError and disables the plugin on load.
Setting options.release=17 alone breaks :paper:compileClasspath resolution, since paper-api's dev-bundle metadata is published as JVM-25-only; Gradle infers a TargetJvmVersion=17 requirement from the release flag and refuses to resolve it. Pinning compileClasspath/ runtimeClasspath/testCompileClasspath/testRuntimeClasspath to TargetJvmVersion=25 keeps dependency resolution on the JDK 25 toolchain while compileJava still emits Java 17-compatible bytecode.