Skip to content

Commit 8b9e13b

Browse files
spring-operatorrstoyanchev
authored andcommitted
URL Cleanup
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://springsource.org/downloads/sts (302) migrated to: https://spring.io/projectss/sts ([https](https://springsource.org/downloads/sts) result 404). ## Fixed Success These URLs were fixed successfully. * http://issues.gradle.org/browse/GRADLE-1116 migrated to: https://issues.gradle.org/browse/GRADLE-1116 ([https](https://issues.gradle.org/browse/GRADLE-1116) result 200). * http://www.apache.org/licenses/LICENSE-2.0.txt migrated to: https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200). * http://projects.spring.io/spring-webflow migrated to: https://projects.spring.io/spring-webflow ([https](https://projects.spring.io/spring-webflow) result 301). * http://repo.spring.io/libs-release migrated to: https://repo.spring.io/libs-release ([https](https://repo.spring.io/libs-release) result 302). * http://repo.spring.io/libs-snapshot migrated to: https://repo.spring.io/libs-snapshot ([https](https://repo.spring.io/libs-snapshot) result 302). * http://repo.spring.io/plugins-release migrated to: https://repo.spring.io/plugins-release ([https](https://repo.spring.io/plugins-release) result 302).
1 parent 967cec1 commit 8b9e13b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
repositories {
3-
maven { url "http://repo.spring.io/plugins-release" }
3+
maven { url "https://repo.spring.io/plugins-release" }
44
}
55
dependencies {
66
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
@@ -30,8 +30,8 @@ subprojects { subproject ->
3030
sourceSets.test.resources.srcDirs = ["src/main/java", "src/test/resources", "src/test/java"]
3131

3232
repositories {
33-
maven { url "http://repo.spring.io/libs-release" }
34-
maven { url "http://repo.spring.io/libs-snapshot" }
33+
maven { url "https://repo.spring.io/libs-release" }
34+
maven { url "https://repo.spring.io/libs-snapshot" }
3535
}
3636

3737
jar {

ide.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ eclipse.jdt {
1111
}
1212

1313
// Replace classpath entries with project dependencies (GRADLE-1116)
14-
// http://issues.gradle.org/browse/GRADLE-1116
14+
// https://issues.gradle.org/browse/GRADLE-1116
1515
eclipse.classpath.file.whenMerged { classpath ->
1616
def regexp = /.*?\/([^\/]+)\/build\/[^\/]+\/(?:main|test)/ // only match those that end in main or test (avoids removing necessary entries like build/classes/jaxb)
1717
def projectOutputDependencies = classpath.entries.findAll { entry -> entry.path =~ regexp }

import-into-eclipse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ been tested against STS $STS_TEST_VERSION), but at the minimum you will
1414
need Eclipse + AJDT.
1515
1616
If you need to download and install STS, please do that now by
17-
visiting http://springsource.org/downloads/sts
17+
visiting https://spring.io/projectss/sts
1818
1919
Otherwise, press enter and we'll begin.
2020
EOM

publish-maven.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ def customizePom(pom, gradleProject) {
2525
url = "https://github.com/spring-projects/spring-webflow"
2626
organization {
2727
name = "Spring IO"
28-
url = "http://projects.spring.io/spring-webflow"
28+
url = "https://projects.spring.io/spring-webflow"
2929
}
3030
licenses {
3131
license {
3232
name "The Apache Software License, Version 2.0"
33-
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
33+
url "https://www.apache.org/licenses/LICENSE-2.0.txt"
3434
distribution "repo"
3535
}
3636
}

0 commit comments

Comments
 (0)