diff --git a/tools/bt/build.gradle b/tools/bt/build.gradle index 017ae94..a742331 100644 --- a/tools/bt/build.gradle +++ b/tools/bt/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version "2.7.18" + id 'org.springframework.boot' version "4.0.1" id 'java' id 'application' id 'org.graalvm.buildtools.native' version '0.11.3' @@ -22,6 +22,14 @@ application { mainClass = "org.applecommander.bastools.tools.bt.Main" } +// Disable all Spring AOT processing +processAot.configure { + enabled = false; +} +processTestAot.configure { + enabled = false; +} + bootJar { manifest { attributes( diff --git a/tools/st/build.gradle b/tools/st/build.gradle index 1304838..7ad42a0 100644 --- a/tools/st/build.gradle +++ b/tools/st/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version "2.7.18" + id 'org.springframework.boot' version "4.0.1" id 'java' id 'application' id 'org.graalvm.buildtools.native' version '0.11.3' @@ -22,6 +22,14 @@ application { mainClass = "org.applecommander.bastools.tools.st.Main" } +// Disable all Spring AOT processing +processAot.configure { + enabled = false; +} +processTestAot.configure { + enabled = false; +} + bootJar { manifest { attributes(