From e2d604f0237bb395b8bca0da1f8a5d9f274e3d98 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 19 Mar 2019 22:56:51 -0500 Subject: [PATCH] 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 unable to be fixed. Please review them to see if they can be manually resolved. * http://my.repository.com/repo/path (200) with 1 occurrences could not be migrated: ([https](https://my.repository.com/repo/path) result SSLHandshakeException). 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://sha256timestamp.ws.symantec.com/sha256/timestamp (InvalidMediaTypeException) with 3 occurrences migrated to: https://sha256timestamp.ws.symantec.com/sha256/timestamp ([https](https://sha256timestamp.ws.symantec.com/sha256/timestamp) result ConnectTimeoutException). * http://www.myhost.com/maven/jdk14 (500) with 1 occurrences migrated to: https://www.myhost.com/maven/jdk14 ([https](https://www.myhost.com/maven/jdk14) result 500). These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://dist.springsource.com/release/TOOLS/third-party/misc-p2-repo/ with 1 occurrences migrated to: https://dist.springsource.com/release/TOOLS/third-party/misc-p2-repo/ ([https](https://dist.springsource.com/release/TOOLS/third-party/misc-p2-repo/) result 200). * http://maven.apache.org/xsd/settings-1.0.0.xsd with 1 occurrences migrated to: https://maven.apache.org/xsd/settings-1.0.0.xsd ([https](https://maven.apache.org/xsd/settings-1.0.0.xsd) result 200). * http://spring.io/tools with 3 occurrences migrated to: https://spring.io/tools ([https](https://spring.io/tools) result 200). * http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html with 1 occurrences migrated to: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html ([https](https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html) result 200). * http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html with 1 occurrences migrated to: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html ([https](https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html) result 200). * http://www.springframework.org/schema/beans/spring-beans.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/beans/spring-beans.xsd ([https](https://www.springframework.org/schema/beans/spring-beans.xsd) result 200). * http://www.pivotal.io with 1 occurrences migrated to: https://www.pivotal.io ([https](https://www.pivotal.io) result 301). These URLs were intentionally ignored. * http://maven.apache.org/SETTINGS/1.0.0 with 2 occurrences * http://www.springframework.org/schema/beans with 2 occurrences * http://www.springframework.org/schema/p with 1 occurrences * http://www.w3.org/2001/XMLSchema-instance with 2 occurrences Revert timestamp switch --- .../category.xml | 2 +- .../category.xml | 2 +- .../category.xml | 2 +- .../src/test/resources/maven-config/settings.xml | 4 ++-- .../config/simple-spring-config.xml | 2 +- .../idea-boot-java/resources/META-INF/plugin.xml | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eclipse-distribution/org.springframework.boot.ide.repository.e410/category.xml b/eclipse-distribution/org.springframework.boot.ide.repository.e410/category.xml index 9ced0ba65..5373cae79 100644 --- a/eclipse-distribution/org.springframework.boot.ide.repository.e410/category.xml +++ b/eclipse-distribution/org.springframework.boot.ide.repository.e410/category.xml @@ -1,6 +1,6 @@ - + Spring Tool Suite 4 diff --git a/eclipse-distribution/org.springframework.boot.ide.repository.e411/category.xml b/eclipse-distribution/org.springframework.boot.ide.repository.e411/category.xml index 9ced0ba65..5373cae79 100644 --- a/eclipse-distribution/org.springframework.boot.ide.repository.e411/category.xml +++ b/eclipse-distribution/org.springframework.boot.ide.repository.e411/category.xml @@ -1,6 +1,6 @@ - + Spring Tool Suite 4 diff --git a/eclipse-distribution/org.springframework.boot.ide.repository.e49/category.xml b/eclipse-distribution/org.springframework.boot.ide.repository.e49/category.xml index 516f2b52a..4464d1e5c 100644 --- a/eclipse-distribution/org.springframework.boot.ide.repository.e49/category.xml +++ b/eclipse-distribution/org.springframework.boot.ide.repository.e49/category.xml @@ -1,6 +1,6 @@ - + Spring Tool Suite 4 diff --git a/headless-services/commons/commons-maven/src/test/resources/maven-config/settings.xml b/headless-services/commons/commons-maven/src/test/resources/maven-config/settings.xml index 48b3aa0c2..c22bbdf14 100644 --- a/headless-services/commons/commons-maven/src/test/resources/maven-config/settings.xml +++ b/headless-services/commons/commons-maven/src/test/resources/maven-config/settings.xml @@ -45,7 +45,7 @@ under the License. |--> + xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> ${java.io.tmpdir}/test-m2-repository @@ -198,7 +198,7 @@ under the License. jdk14 Repository for JDK 1.4 builds - http://www.myhost.com/maven/jdk14 + https://www.myhost.com/maven/jdk14 default always diff --git a/headless-services/spring-boot-language-server/src/test/resources/test-projects/test-annotation-indexing-xml-project/config/simple-spring-config.xml b/headless-services/spring-boot-language-server/src/test/resources/test-projects/test-annotation-indexing-xml-project/config/simple-spring-config.xml index 116f1677f..28ef60383 100644 --- a/headless-services/spring-boot-language-server/src/test/resources/test-projects/test-annotation-indexing-xml-project/config/simple-spring-config.xml +++ b/headless-services/spring-boot-language-server/src/test/resources/test-projects/test-annotation-indexing-xml-project/config/simple-spring-config.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/idea-extensions/idea-boot-java/resources/META-INF/plugin.xml b/idea-extensions/idea-boot-java/resources/META-INF/plugin.xml index 19a8b26b5..504106f92 100644 --- a/idea-extensions/idea-boot-java/resources/META-INF/plugin.xml +++ b/idea-extensions/idea-boot-java/resources/META-INF/plugin.xml @@ -2,7 +2,7 @@ org.spring.tools.boot-java.ls Spring Boot Java Support 1.0 - YourCompany + YourCompany @@ -15,10 +15,10 @@ ]]> - + - com.intellij.modules.lang com.github.gtache.lsp