Skip to content

Commit 64dcbec

Browse files
committed
Merge branch '3.0.x'
Closes gh-34124
2 parents 1c9e22c + 1cdc24a commit 64dcbec

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

buildSrc/src/main/java/org/springframework/boot/build/cli/HomebrewFormula.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class HomebrewFormula extends DefaultTask {
4646

4747
private static final String SPRING_REPO = "https://repo.spring.io/%s";
4848

49-
private static final String MAVEN_REPO = "https://repo1.maven.org/maven2";
49+
private static final String MAVEN_REPO = "https://repo.maven.apache.org/maven2";
5050

5151
private Provider<RegularFile> archive;
5252

ci/images/releasescripts/src/main/java/io/spring/concourse/releasescripts/sdkman/SdkmanService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class SdkmanService {
4040

4141
private static final String SDKMAN_URL = "https://vendors.sdkman.io/";
4242

43-
private static final String DOWNLOAD_URL = "https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-cli/"
43+
private static final String DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-cli/"
4444
+ "%s/spring-boot-cli-%s-bin.zip";
4545

4646
private static final String CHANGELOG_URL = "https://github.com/spring-projects/spring-boot/releases/tag/v%s";

ci/images/releasescripts/src/test/java/io/spring/concourse/releasescripts/sdkman/SdkmanServiceTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void tearDown() {
5555
@Test
5656
void publishWhenMakeDefaultTrue() {
5757
setupExpectation("https://vendors.sdkman.io/release",
58-
"{\"candidate\": \"springboot\", \"version\": \"1.2.3\", \"url\": \"https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-cli/1.2.3/spring-boot-cli-1.2.3-bin.zip\"}");
58+
"{\"candidate\": \"springboot\", \"version\": \"1.2.3\", \"url\": \"https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-cli/1.2.3/spring-boot-cli-1.2.3-bin.zip\"}");
5959
setupExpectation("https://vendors.sdkman.io/default", "{\"candidate\": \"springboot\", \"version\": \"1.2.3\"}",
6060
HttpMethod.PUT);
6161
setupExpectation("https://vendors.sdkman.io/announce/struct",
@@ -67,7 +67,7 @@ void publishWhenMakeDefaultTrue() {
6767
@Test
6868
void publishWhenMakeDefaultFalse() {
6969
setupExpectation("https://vendors.sdkman.io/release",
70-
"{\"candidate\": \"springboot\", \"version\": \"1.2.3\", \"url\": \"https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-cli/1.2.3/spring-boot-cli-1.2.3-bin.zip\"}");
70+
"{\"candidate\": \"springboot\", \"version\": \"1.2.3\", \"url\": \"https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-cli/1.2.3/spring-boot-cli-1.2.3-bin.zip\"}");
7171
setupExpectation("https://vendors.sdkman.io/announce/struct",
7272
"{\"candidate\": \"springboot\", \"version\": \"1.2.3\", \"hashtag\": \"springboot\", \"url\": \"https://github.com/spring-projects/spring-boot/releases/tag/v1.2.3\"}");
7373
this.service.publish("1.2.3", false);

ci/scripts/update-homebrew-tap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ git clone homebrew-tap-repo updated-homebrew-tap-repo > /dev/null
77

88
if [[ $LATEST_GA = true ]]; then
99
pushd updated-homebrew-tap-repo > /dev/null
10-
curl https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-cli/${version}/spring-boot-cli-${version}-homebrew.rb --output spring-boot-cli-${version}-homebrew.rb
10+
curl https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-cli/${version}/spring-boot-cli-${version}-homebrew.rb --output spring-boot-cli-${version}-homebrew.rb
1111
rm spring-boot.rb
1212
mv spring-boot-cli-*.rb spring-boot.rb
1313
git config user.name "Spring Builds" > /dev/null

eclipse/spring-boot-project.setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<repository
106106
url="https://repo.spring.io/javaformat-eclipse-update-site/"/>
107107
<repository
108-
url="https://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-buildhelper/0.15.0/N/0.15.0.201405280027/"/>
108+
url="https://repo.maven.apache.org/maven2/.m2e/connectors/m2eclipse-buildhelper/0.15.0/N/0.15.0.201405280027/"/>
109109
<repository
110110
url="https://download.springsource.com/release/TOOLS/sts4/update/latest/"/>
111111
<repository

0 commit comments

Comments
 (0)