From 00ef257ba49bf0a81b91eb795f7bf8ace5b82f21 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 11:15:21 -0500 Subject: [PATCH] SGF-827 - 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). 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/javase/6/docs/api/ with 1 occurrences migrated to: https://docs.oracle.com/javase/6/docs/api/ ([https](https://docs.oracle.com/javase/6/docs/api/) result 200). * http://docs.spring.io/spring-data-gemfire/docs/current/api/ with 1 occurrences migrated to: https://docs.spring.io/spring-data-gemfire/docs/current/api/ ([https](https://docs.spring.io/spring-data-gemfire/docs/current/api/) result 200). * http://docs.spring.io/spring-data/commons/docs/current/api/index.html?index-all.html with 1 occurrences migrated to: https://docs.spring.io/spring-data/commons/docs/current/api/index.html?index-all.html ([https](https://docs.spring.io/spring-data/commons/docs/current/api/index.html?index-all.html) result 200). * http://docs.spring.io/spring/docs/current/javadoc-api/ with 1 occurrences migrated to: https://docs.spring.io/spring/docs/current/javadoc-api/ ([https](https://docs.spring.io/spring/docs/current/javadoc-api/) result 200). * http://logging.apache.org/log4j/1.2/apidocs/ with 1 occurrences migrated to: https://logging.apache.org/log4j/1.2/apidocs/ ([https](https://logging.apache.org/log4j/1.2/apidocs/) result 200). * http://maven.apache.org/xsd/maven-4.0.0.xsd with 1 occurrences migrated to: https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd) 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://github.com/SpringSource/spring-gemfire with 2 occurrences migrated to: https://github.com/SpringSource/spring-gemfire ([https](https://github.com/SpringSource/spring-gemfire) result 301). * http://repo.springsource.org/libs-snapshot with 1 occurrences migrated to: https://repo.springsource.org/libs-snapshot ([https](https://repo.springsource.org/libs-snapshot) result 301). * http://www.springsource.org/spring-gemfire with 1 occurrences migrated to: https://www.springsource.org/spring-gemfire ([https](https://www.springsource.org/spring-gemfire) result 301). * http://gemfire.docs.pivotal.io/docs-gemfire/latest/javadocs/japi/ with 1 occurrences migrated to: https://gemfire.docs.pivotal.io/docs-gemfire/latest/javadocs/japi/ ([https](https://gemfire.docs.pivotal.io/docs-gemfire/latest/javadocs/japi/) result 302). These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 2 occurrences * http://www.w3.org/2001/XMLSchema-instance with 1 occurrences Resolves gh-106. --- build.gradle | 12 ++++++------ maven.gradle | 8 ++++---- pom.xml | 2 +- samples/hello-world/build.gradle | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index 36b992b6..7d20257b 100644 --- a/build.gradle +++ b/build.gradle @@ -178,12 +178,12 @@ javadoc { ] links = [ - "http://docs.oracle.com/javase/6/docs/api/", - "http://docs.spring.io/spring/docs/current/javadoc-api/", - "http://docs.spring.io/spring-data-gemfire/docs/current/api/", - "http://docs.spring.io/spring-data/commons/docs/current/api/index.html?index-all.html", - "http://gemfire.docs.pivotal.io/docs-gemfire/latest/javadocs/japi/", - "http://logging.apache.org/log4j/1.2/apidocs/", + "https://docs.oracle.com/javase/6/docs/api/", + "https://docs.spring.io/spring/docs/current/javadoc-api/", + "https://docs.spring.io/spring-data-gemfire/docs/current/api/", + "https://docs.spring.io/spring-data/commons/docs/current/api/index.html?index-all.html", + "https://gemfire.docs.pivotal.io/docs-gemfire/latest/javadocs/japi/", + "https://logging.apache.org/log4j/1.2/apidocs/", ] exclude "org/springframework/data/gemfire/config/**" diff --git a/maven.gradle b/maven.gradle index a6ee43c6..dd074b44 100644 --- a/maven.gradle +++ b/maven.gradle @@ -31,20 +31,20 @@ def customizePom(pom, gradleProject) { generatedPom.project { name = gradleProject.description description = gradleProject.description - url = 'http://github.com/SpringSource/spring-gemfire' + url = 'https://github.com/SpringSource/spring-gemfire' organization { name = 'SpringSource' - url = 'http://www.springsource.org/spring-gemfire' + url = 'https://www.springsource.org/spring-gemfire' } 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' } } scm { - url = 'http://github.com/SpringSource/spring-gemfire' + url = 'https://github.com/SpringSource/spring-gemfire' connection = 'scm:git:git://github.com/SpringSource/spring-gemfire' developerConnection = 'scm:git:git://github.com/SpringSource/spring-gemfire' } diff --git a/pom.xml b/pom.xml index ac682ece..18136beb 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 diff --git a/samples/hello-world/build.gradle b/samples/hello-world/build.gradle index 0ed78060..4421d920 100644 --- a/samples/hello-world/build.gradle +++ b/samples/hello-world/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'application' repositories { // Public Spring artefacts - maven { url "http://repo.springsource.org/libs-snapshot" } + maven { url "https://repo.springsource.org/libs-snapshot" } mavenLocal() }