Skip to content

Commit 226b081

Browse files
committed
Upgrade native-build-tools 0.9.14
- Update docs - Fixes #540
1 parent e02503e commit 226b081

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version=3.0.0-SNAPSHOT
22
springBootVersion=3.0.0-M5
3-
nativeBuildToolsVersion=0.9.13
3+
nativeBuildToolsVersion=0.9.14
44
jlineVersion=3.21.0
55
st4Version=4.3.1
66
jimfsVersion=1.2

spring-shell-docs/src/main/asciidoc/using-shell-building.adoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ For _gradle_ add graalvm's native plugin and configure metadata repository.
2727
[source, groovy, subs=attributes+]
2828
----
2929
plugins {
30-
id 'org.graalvm.buildtools.native' version '0.9.13'
30+
id 'org.graalvm.buildtools.native' version '0.9.14'
3131
}
3232
3333
graalvmNative {
3434
metadataRepository {
35-
version = "0.1.2"
35+
version = "0.2.0"
3636
}
3737
}
3838
----
@@ -55,7 +55,7 @@ profile which can be used to do a compilation. You need to configure metadata re
5555
<artifactId>native-maven-plugin</artifactId>
5656
<configuration>
5757
<metadataRepository>
58-
<version>0.1.2</version>
58+
<version>0.2.0</version>
5959
</metadataRepository>
6060
</configuration>
6161
</plugin>
@@ -65,6 +65,9 @@ profile which can be used to do a compilation. You need to configure metadata re
6565
----
6666
====
6767

68+
NOTE: If you rely on `spring-boot-starter-parent` it manages `native-maven-plugin`
69+
version which is kept up to date.
70+
6871
When maven build is run with `./mvnw package -Pnative` you should get binary
6972
under `target` directory.
7073

spring-shell-samples/spring-shell-samples.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ springBoot {
1818

1919
graalvmNative {
2020
metadataRepository {
21-
version = "0.1.1"
21+
version = "0.2.0"
2222
}
2323
}

0 commit comments

Comments
 (0)