Browse Source

Fix Oracle JDK download URL

See gh-37450
pull/38228/head
Phillip Webb 2 years ago
parent
commit
c37290bc6c
  1. 2
      spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle

2
spring-boot-tests/spring-boot-integration-tests/spring-boot-loader-tests/build.gradle

@ -8,7 +8,7 @@ plugins { @@ -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

Loading…
Cancel
Save