Skip to content
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

Update native-build-tools dependencies #497

Merged
merged 5 commits into from Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -51,7 +51,7 @@ plugins {

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
languageVersion.set(JavaLanguageVersion.of(11))
olpaw marked this conversation as resolved.
Show resolved Hide resolved
}
withJavadocJar()
withSourcesJar()
Expand Down
3 changes: 2 additions & 1 deletion docs/src/docs/asciidoc/index.adoc
Expand Up @@ -22,7 +22,8 @@ If you are using alternative build systems, see <<alternative-build-systems.adoc
=== Release 0.9.26

* Relax GraalVM version check for dev versions
* Prepare plugins for release of *GraalVM for JDK 21*. They no longer deploy any experimental options.
* Prepare plugins for release of _GraalVM for JDK 21_. They no longer deploy any experimental options.
* Bump Java compliance of the plugins from Java 8+ to Java 11+.

==== Gradle plugin

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Expand Up @@ -9,8 +9,8 @@ maven = "3.8.6"
mavenAnnotations = "3.6.4"
mavenEmbedder = "3.8.6"
mavenWagon = "3.4.3"
graalvm = "22.0.0"
jackson = "2.13.3"
graalvm = "22.3.3"
jackson = "2.13.5"
junitPlatform = "1.9.3"
junitJupiter = "5.10.0"
aether = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion test-support/library-with-reflection/build.gradle.kts
Expand Up @@ -8,7 +8,7 @@ version = "1.5"

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
languageVersion.set(JavaLanguageVersion.of(11))
}
}

Expand Down