From c37290bc6c413d202a230e3ac1dce94436e1b027 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 5 Oct 2023 22:09:45 -0700 Subject: [PATCH] Fix Oracle JDK download URL See gh-37450 --- .../spring-boot-loader-tests/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle b/spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle index c4035df3a5e..e287ed0a16a 100644 --- a/spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle +++ b/spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle @@ -8,7 +8,7 @@ plugins { description = "Spring Boot Loader Integration Tests" def oracleJdkVersion = "17.0.8" -def oracleJdkArch = "aarch64".equalsIgnoreCase(System.getProperty("os.arch")) ? "aarch64" : "x86" +def oracleJdkArch = "aarch64".equalsIgnoreCase(System.getProperty("os.arch")) ? "aarch64" : "x64" configurations { app