Skip to content

Commit 60121fb

Browse files
authored
Disable Spring AOT processing in build.gradle
Disable Spring AOT processing for both processAot and processTestAot.
1 parent dd9523a commit 60121fb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tools/asu/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ application {
2727
mainClass = "io.github.applecommander.applesingle.tools.asu.Main"
2828
}
2929

30+
// Disable all Spring AOT processing
31+
processAot.configure {
32+
enabled = false;
33+
}
34+
processTestAot.configure {
35+
enabled = false;
36+
}
37+
3038
bootJar {
3139
manifest {
3240
attributes(

0 commit comments

Comments
 (0)