Skip to content

Commit 23664c6

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://docs.oracle.com/javaee/7/api/ migrated to: https://docs.oracle.com/javaee/7/api/ ([https](https://docs.oracle.com/javaee/7/api/) result 200). * http://docs.oracle.com/javase/7/docs/api/ migrated to: https://docs.oracle.com/javase/7/docs/api/ ([https](https://docs.oracle.com/javase/7/docs/api/) result 200). * http://docs.spring.io/spring/docs/4.1.x/javadoc-api/ migrated to: https://docs.spring.io/spring/docs/4.1.x/javadoc-api/ ([https](https://docs.spring.io/spring/docs/4.1.x/javadoc-api/) result 200). * http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch migrated to: https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ([https](https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch) result 200). * http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin migrated to: https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ([https](https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin) result 200). * http://www.apache.org/licenses/LICENSE-2.0 migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * http://fasterxml.github.com/jackson-core/javadoc/2.0.0/ migrated to: https://fasterxml.github.com/jackson-core/javadoc/2.0.0/ ([https](https://fasterxml.github.com/jackson-core/javadoc/2.0.0/) result 301). * http://www.spring.io migrated to: https://www.spring.io ([https](https://www.spring.io) result 301). # 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 b6ebf8d commit 23664c6

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

docs/src/main/asciidoc/ghpages.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function check_if_anything_to_sync() {
4040

4141
function retrieve_current_branch() {
4242
# Code getting the name of the current branch. For master we want to publish as we did until now
43-
# http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch
43+
# https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch
4444
# If there is a branch already passed will reuse it - otherwise will try to find it
4545
CURRENT_BRANCH=${BRANCH}
4646
if [[ -z "${CURRENT_BRANCH}" ]] ; then
@@ -147,7 +147,7 @@ function copy_docs_for_current_version() {
147147
COMMIT_CHANGES="yes"
148148
else
149149
echo -e "Current branch is [${CURRENT_BRANCH}]"
150-
# http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin
150+
# https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin
151151
if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then
152152
mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH}
153153
echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder"

mvnw

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# "License"); you may not use this file except in compliance
99
# with the License. You may obtain a copy of the License at
1010
#
11-
# http://www.apache.org/licenses/LICENSE-2.0
11+
# https://www.apache.org/licenses/LICENSE-2.0
1212
#
1313
# Unless required by applicable law or agreed to in writing,
1414
# software distributed under the License is distributed on an

mvnw.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@REM "License"); you may not use this file except in compliance
88
@REM with the License. You may obtain a copy of the License at
99
@REM
10-
@REM http://www.apache.org/licenses/LICENSE-2.0
10+
@REM https://www.apache.org/licenses/LICENSE-2.0
1111
@REM
1212
@REM Unless required by applicable law or agreed to in writing,
1313
@REM software distributed under the License is distributed on an

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,10 @@
196196
<artifactId>maven-javadoc-plugin</artifactId>
197197
<configuration>
198198
<links>
199-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
200-
<link>http://docs.oracle.com/javaee/7/api/</link>
201-
<link>http://fasterxml.github.com/jackson-core/javadoc/2.0.0/</link>
202-
<link>http://docs.spring.io/spring/docs/4.1.x/javadoc-api/</link>
199+
<link>https://docs.oracle.com/javase/7/docs/api/</link>
200+
<link>https://docs.oracle.com/javaee/7/api/</link>
201+
<link>https://fasterxml.github.com/jackson-core/javadoc/2.0.0/</link>
202+
<link>https://docs.spring.io/spring/docs/4.1.x/javadoc-api/</link>
203203
</links>
204204
<author>true</author>
205205
<header>${project.name}</header>

spring-cloud-gcp-starters/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<artifactId>spring-cloud-gcp-starters</artifactId>
1515
<organization>
1616
<name>Pivotal Software, Inc.</name>
17-
<url>http://www.spring.io</url>
17+
<url>https://www.spring.io</url>
1818
</organization>
1919
<properties>
2020
<main.basedir>${basedir}/..</main.basedir>

spring-cloud-gcp-starters/spring-cloud-gcp-starter-config/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<description>Starter for Spring Cloud Config Client using Google Runtime Configuration API</description>
1212
<organization>
1313
<name>Pivotal Software, Inc.</name>
14-
<url>http://www.spring.io</url>
14+
<url>https://www.spring.io</url>
1515
</organization>
1616
<properties>
1717
<main.basedir>${basedir}/../..</main.basedir>

spring-cloud-gcp-starters/spring-cloud-gcp-starter-pubsub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<description>Starter for Google Cloud Pub/Sub messaging</description>
1212
<organization>
1313
<name>Pivotal Software, Inc.</name>
14-
<url>http://www.spring.io</url>
14+
<url>https://www.spring.io</url>
1515
</organization>
1616
<properties>
1717
<main.basedir>${basedir}/../..</main.basedir>

spring-cloud-gcp-starters/spring-cloud-gcp-starter-storage/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<description>Starter for Google Cloud Storage</description>
1313
<organization>
1414
<name>Pivotal Software, Inc.</name>
15-
<url>http://www.spring.io</url>
15+
<url>https://www.spring.io</url>
1616
</organization>
1717
<properties>
1818
<main.basedir>${basedir}/../..</main.basedir>

spring-cloud-gcp-starters/spring-cloud-gcp-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<description>Starter for Google Cloud</description>
1212
<organization>
1313
<name>Pivotal Software, Inc.</name>
14-
<url>http://www.spring.io</url>
14+
<url>https://www.spring.io</url>
1515
</organization>
1616
<properties>
1717
<main.basedir>${basedir}/../..</main.basedir>

0 commit comments

Comments
 (0)