Skip to content

Commit

Permalink
Support Java 23 (#974)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
Goooler and renovate[bot] authored Sep 18, 2024
1 parent 0dd130d commit ceb119e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ ubuntu-latest, windows-latest ]
# Always test on the latest version and all LTS.
java: [ 11, 17, 21, 22 ]
java: [ 11, 17, 21, 23 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tasks.publishPlugins {
tasks.withType<Javadoc>().configureEach {
(options as? StandardJavadocDocletOptions)?.let {
it.links(
"https://docs.oracle.com/javase/17/docs/api",
"https://docs.oracle.com/en/java/javase/17/docs/api/",
"https://docs.groovy-lang.org/2.4.7/html/gapi/"
)
it.addStringOption("Xdoclint:none", "-quiet")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation("org.codehaus.plexus:plexus-utils:4.0.1")
implementation("org.codehaus.plexus:plexus-xml:4.0.4")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
implementation("org.vafer:jdependency:2.10")
implementation("org.vafer:jdependency:2.11")

testImplementation("org.spockframework:spock-core:2.3-groovy-3.0") {
exclude(group = "org.codehaus.groovy")
Expand Down
1 change: 1 addition & 0 deletions src/docs/changes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
**Changed**

- `ShadowExtension.component` has been deprecated, now you can use `component.shadow` instead. ([#956](https://github.com/GradleUp/shadow/pull/956))
- Support Java 23. ([#974](https://github.com/GradleUp/shadow/pull/974))

**Fixed**

Expand Down

0 comments on commit ceb119e

Please sign in to comment.