File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
version =3.0.0-SNAPSHOT
2
2
springBootVersion =3.0.0-SNAPSHOT
3
+ nativeBuildToolsVersion =0.9.13
3
4
jlineVersion =3.21.0
4
5
st4Version =4.3.1
5
6
jimfsVersion =1.2
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ pluginManagement {
13
13
}
14
14
plugins {
15
15
id ' org.springframework.boot' version " $springBootVersion "
16
+ id ' org.graalvm.buildtools.native' version " $nativeBuildToolsVersion "
16
17
}
17
18
}
18
19
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' org.springframework.shell.sample'
3
3
id ' org.springframework.boot'
4
+ id ' org.graalvm.buildtools.native'
4
5
}
5
6
6
7
description = ' Spring Shell Samples'
@@ -10,3 +11,10 @@ dependencies {
10
11
implementation project(' :spring-shell-starter-jna' )
11
12
testImplementation ' org.springframework.boot:spring-boot-starter-test'
12
13
}
14
+
15
+ // TODO: workaround until boot's aot plugin automatically extends
16
+ // from all super configurations like graalvm's plugin does.
17
+ configurations {
18
+ aotCompileClasspath. extendsFrom management
19
+ aotRuntimeClasspath. extendsFrom management
20
+ }
You can’t perform that action at this time.
0 commit comments