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

Commit

Permalink
URL Cleanup
Browse files Browse the repository at this point in the history
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
  • Loading branch information
spring-operator authored and royclarkson committed Mar 20, 2019
1 parent 658d6d3 commit 0156a0b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ configure(allprojects) {
}

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

// servlet-api (2.5) and tomcat-servlet-api (3.0) classpath entries should not be
Expand Down
4 changes: 2 additions & 2 deletions gradle/publish-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) {
url = "https://github.com/spring-projects/spring-android"
organization {
name = "Spring IO"
url = "http://projects.spring.io/spring-android"
url = "https://projects.spring.io/spring-android"
}
licenses {
license {
name "The Apache Software License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
url "https://www.apache.org/licenses/LICENSE-2.0.txt"
distribution "repo"
}
}
Expand Down
4 changes: 2 additions & 2 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<organization>
<name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url>
<url>https://www.spring.io</url>
</organization>

<modules>
Expand Down Expand Up @@ -89,7 +89,7 @@
<repository>
<id>spring-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>http://repo.spring.io/libs-snapshot</url>
<url>https://repo.spring.io/libs-snapshot</url>
</repository>
</repositories>

Expand Down

0 comments on commit 0156a0b

Please sign in to comment.