From 07d4fe7c13c65f85cf4f014557ccfd45f17b5169 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 11:44:12 +0000 Subject: [PATCH 1/3] Bump org.springframework.boot from 2.7.18 to 4.0.0 Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 2.7.18 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.7.18...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- cli/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/build.gradle b/cli/build.gradle index 28289a1..858582d 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version "2.7.18" + id 'org.springframework.boot' version "4.0.0" id 'java' id 'application' id 'org.graalvm.buildtools.native' version '0.11.3' From 02f14b68e13734cf4e7b852a6e11e91454cce98f Mon Sep 17 00:00:00 2001 From: A2 Geek Date: Mon, 24 Nov 2025 10:46:46 -0600 Subject: [PATCH 2/3] Disable Spring AOT processing Disable Spring AOT processing in build configuration. --- cli/build.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/cli/build.gradle b/cli/build.gradle index 858582d..ec9a44d 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -32,6 +32,14 @@ application { mainClass = 'org.applecommander.disassembler.cli.Main' } +// Disable all Spring AOT processing +processAot.configure { + enabled = false; +} +processTestAot.configure { + enabled = false; +} + bootJar { archiveBaseName = 'acdasm' archiveVersion = acdasmVersion @@ -49,4 +57,4 @@ graalvmNative { imageName.set("acdasm-${osName}-${osArch}-${acdasmVersion}") } } -} \ No newline at end of file +} From 83dc80cdd5924269080d2cb657139f412ecb5b00 Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Mon, 24 Nov 2025 10:51:27 -0600 Subject: [PATCH 3/3] Updating to Gradle 8.14.2. --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37f853b..ff23a68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME