Drop Java 8 support: require Java 17 (resolves #90)#133
Open
vasiliy-mikhailov wants to merge 1 commit into
Open
Drop Java 8 support: require Java 17 (resolves #90)#133vasiliy-mikhailov wants to merge 1 commit into
vasiliy-mikhailov wants to merge 1 commit into
Conversation
build.gradle.kts: compileJava options.release 8 -> 17 (all 7 modules). Repo CI command ./gradlew build jacocoTestReport javadoc green on Temurin 17 (~726 tests, 1 skipped); CI matrix already [17,21,25]. Resolves open-coap#90.
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.
Resolves #90.
Sets the minimum supported Java version to 17 by raising the compile target:
build.gradle.kts:options.release.set(8)→options.release.set(17)— applied to all 7 modules via the sharedcompileJavaconfiguration.CI already runs the matrix
['17','21','25'](no Java 8/11 axis), so no workflow change is needed.Verification
Ran the repo's own CI command on Temurin 17 —
./gradlew build jacocoTestReport javadoc: BUILD SUCCESSFUL, all tests green (~726 executed across the 7 modules, 1 skipped), identical to the release-8 baseline.-Werrorstayed clean.🤖 Migrated with the bump-java-version skill.