From 4f4a15e3b90183c888c44b94c98ee0b8584d28b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 00:04:40 +0000 Subject: [PATCH 1/3] Bump org.springframework.boot from 2.7.18 to 4.0.1 Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 2.7.18 to 4.0.1. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.7.18...v4.0.1) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- tools/bt/build.gradle | 2 +- tools/st/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bt/build.gradle b/tools/bt/build.gradle index 017ae94..b138fad 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' diff --git a/tools/st/build.gradle b/tools/st/build.gradle index 1304838..2776bae 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' From 86b9a7adc5362c62d960603cf2450831c1bc00fe Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 12 Jan 2026 19:02:26 -0600 Subject: [PATCH 2/3] Disable Spring AOT processing Disable Spring AOT processing in build configuration. --- tools/bt/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/bt/build.gradle b/tools/bt/build.gradle index b138fad..a742331 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 3c1f29d7fdefebfd300bfe52cafb6018a452ee80 Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 12 Jan 2026 19:03:46 -0600 Subject: [PATCH 3/3] Disable Spring AOT processing Disable Spring AOT processing for both main and test. --- tools/st/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/st/build.gradle b/tools/st/build.gradle index 2776bae..7ad42a0 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(