Skip to content
This repository was archived by the owner on Mar 30, 2023. It is now read-only.

Commit 60f1e5f

Browse files
spring-operatorartembilan
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 Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://spring.io with 1 occurrences migrated to: https://spring.io ([https](https://spring.io) result 200). * http://www.apache.org/licenses/LICENSE-2.0.txt with 1 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200). * http://repo.spring.io/libs-staging-local with 1 occurrences migrated to: https://repo.spring.io/libs-staging-local ([https](https://repo.spring.io/libs-staging-local) result 302).
1 parent b7565c0 commit 60f1e5f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ repositories {
5353
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
5454
maven { url 'https://repo.spring.io/libs-snapshot' }
5555
}
56-
// maven { url 'http://repo.spring.io/libs-staging-local' }
56+
// maven { url 'https://repo.spring.io/libs-staging-local' }
5757
}
5858

5959
compileJava {

publish-maven.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) {
3434
url = linkHomepage
3535
organization {
3636
name = 'SpringIO'
37-
url = 'http://spring.io'
37+
url = 'https://spring.io'
3838
}
3939
licenses {
4040
license {
4141
name 'The Apache Software License, Version 2.0'
42-
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
42+
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
4343
distribution 'repo'
4444
}
4545
}

0 commit comments

Comments
 (0)