Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 0156a0b

Browse files
spring-operatorroyclarkson
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://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/ (404) migrated to: https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/ ([https](https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/) result 404). ## Fixed Success These URLs were fixed successfully. * http://docs.jboss.org/jbossas/javadoc/4.0.5/connector/ migrated to: https://docs.jboss.org/jbossas/javadoc/4.0.5/connector/ ([https](https://docs.jboss.org/jbossas/javadoc/4.0.5/connector/) result 200). * http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/ migrated to: https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/ ([https](https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/) 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://fasterxml.github.com/jackson-core/javadoc/2.3.0/ migrated to: https://fasterxml.github.com/jackson-core/javadoc/2.3.0/ ([https](https://fasterxml.github.com/jackson-core/javadoc/2.3.0/) result 301). * http://fasterxml.github.com/jackson-databind/javadoc/2.3.0/ migrated to: https://fasterxml.github.com/jackson-databind/javadoc/2.3.0/ ([https](https://fasterxml.github.com/jackson-databind/javadoc/2.3.0/) result 301). * http://projects.spring.io/spring-android migrated to: https://projects.spring.io/spring-android ([https](https://projects.spring.io/spring-android) result 301). * http://www.spring.io migrated to: https://www.spring.io ([https](https://www.spring.io) result 301). * http://repo.spring.io/libs-snapshot migrated to: https://repo.spring.io/libs-snapshot ([https](https://repo.spring.io/libs-snapshot) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 * http://maven.apache.org/xsd/maven-4.0.0.xsd * http://www.w3.org/2001/XMLSchema-instance
1 parent 658d6d3 commit 0156a0b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ configure(allprojects) {
6161
}
6262

6363
ext.javadocLinks = [
64-
"http://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
65-
"http://fasterxml.github.com/jackson-core/javadoc/2.3.0/",
66-
"http://fasterxml.github.com/jackson-databind/javadoc/2.3.0/",
67-
"http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/",
68-
"http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/"
64+
"https://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
65+
"https://fasterxml.github.com/jackson-core/javadoc/2.3.0/",
66+
"https://fasterxml.github.com/jackson-databind/javadoc/2.3.0/",
67+
"https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/",
68+
"https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/"
6969
] as String[]
7070

7171
// servlet-api (2.5) and tomcat-servlet-api (3.0) classpath entries should not be

gradle/publish-maven.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) {
3434
url = "https://github.com/spring-projects/spring-android"
3535
organization {
3636
name = "Spring IO"
37-
url = "http://projects.spring.io/spring-android"
37+
url = "https://projects.spring.io/spring-android"
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
}

test/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<organization>
1515
<name>Pivotal Software, Inc.</name>
16-
<url>http://www.spring.io</url>
16+
<url>https://www.spring.io</url>
1717
</organization>
1818

1919
<modules>
@@ -89,7 +89,7 @@
8989
<repository>
9090
<id>spring-snapshot</id>
9191
<name>Spring Snapshot Repository</name>
92-
<url>http://repo.spring.io/libs-snapshot</url>
92+
<url>https://repo.spring.io/libs-snapshot</url>
9393
</repository>
9494
</repositories>
9595

0 commit comments

Comments
 (0)