From d048bb5777d39ed7e9f69ac66397af7ea889e1e0 Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 12 Jan 2026 18:56:35 -0600 Subject: [PATCH 1/2] Disable Spring AOT processing in build.gradle Disabled Spring AOT processing for both main and test. --- tools/bt/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/bt/build.gradle b/tools/bt/build.gradle index 017ae94..dab84c7 100644 --- a/tools/bt/build.gradle +++ b/tools/bt/build.gradle @@ -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( From 33d2dd3525e6d07379e0a31070617a604984b9f4 Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 12 Jan 2026 18:57:11 -0600 Subject: [PATCH 2/2] Disable Spring AOT processing Disable Spring AOT processing in build configuration. --- tools/st/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/st/build.gradle b/tools/st/build.gradle index 1304838..d1300a8 100644 --- a/tools/st/build.gradle +++ b/tools/st/build.gradle @@ -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(