diff --git a/cli/build.gradle b/cli/build.gradle index 28289a1..ec9a44d 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' @@ -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 +} 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