diff --git a/gradle.properties b/gradle.properties index d3e0333e..f0b00eda 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ version=3.0.0-SNAPSHOT springBootVersion=3.0.0-M5 -nativeBuildToolsVersion=0.9.13 +nativeBuildToolsVersion=0.9.14 jlineVersion=3.21.0 st4Version=4.3.1 jimfsVersion=1.2 diff --git a/spring-shell-docs/src/main/asciidoc/using-shell-building.adoc b/spring-shell-docs/src/main/asciidoc/using-shell-building.adoc index 90503a37..bd391f05 100644 --- a/spring-shell-docs/src/main/asciidoc/using-shell-building.adoc +++ b/spring-shell-docs/src/main/asciidoc/using-shell-building.adoc @@ -27,12 +27,12 @@ For _gradle_ add graalvm's native plugin and configure metadata repository. [source, groovy, subs=attributes+] ---- plugins { - id 'org.graalvm.buildtools.native' version '0.9.13' + id 'org.graalvm.buildtools.native' version '0.9.14' } graalvmNative { metadataRepository { - version = "0.1.2" + version = "0.2.0" } } ---- @@ -55,7 +55,7 @@ profile which can be used to do a compilation. You need to configure metadata re native-maven-plugin - 0.1.2 + 0.2.0 @@ -65,6 +65,9 @@ profile which can be used to do a compilation. You need to configure metadata re ---- ==== +NOTE: If you rely on `spring-boot-starter-parent` it manages `native-maven-plugin` +version which is kept up to date. + When maven build is run with `./mvnw package -Pnative` you should get binary under `target` directory. diff --git a/spring-shell-samples/spring-shell-samples.gradle b/spring-shell-samples/spring-shell-samples.gradle index 740031c6..56a5ac55 100644 --- a/spring-shell-samples/spring-shell-samples.gradle +++ b/spring-shell-samples/spring-shell-samples.gradle @@ -18,6 +18,6 @@ springBoot { graalvmNative { metadataRepository { - version = "0.1.1" + version = "0.2.0" } }