From 4bae69d0d011b62586cff564a1dfd8eb368fd2cc Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 19 Mar 2019 19:09:10 -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). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://dist.gemstone.com.s3.amazonaws.com/maven/release (404) with 1 occurrences could not be migrated: ([https](https://dist.gemstone.com.s3.amazonaws.com/maven/release) result SSLHandshakeException). # 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://mirrors.ibiblio.org/pub/mirrors/maven2 (301) with 1 occurrences migrated to: /maven2 ([https](https://mirrors.ibiblio.org/pub/mirrors/maven2) result IllegalArgumentException). * http://repository.springsource.com/maven/bundles/external (404) with 1 occurrences migrated to: https://repository.springsource.com/maven/bundles/external ([https](https://repository.springsource.com/maven/bundles/external) result 404). * http://repository.springsource.com/maven/bundles/release (404) with 1 occurrences migrated to: https://repository.springsource.com/maven/bundles/release ([https](https://repository.springsource.com/maven/bundles/release) result 404). ## 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://www.springframework.org/schema/beans/spring-beans-3.0.xsd with 3 occurrences migrated to: https://www.springframework.org/schema/beans/spring-beans-3.0.xsd ([https](https://www.springframework.org/schema/beans/spring-beans-3.0.xsd) result 200). * http://www.springframework.org/schema/context/spring-context-3.0.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/context/spring-context-3.0.xsd ([https](https://www.springframework.org/schema/context/spring-context-3.0.xsd) result 200). * http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd ([https](https://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd) result 200). * http://www.springframework.org/schema/tx/spring-tx-3.0.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/tx/spring-tx-3.0.xsd ([https](https://www.springframework.org/schema/tx/spring-tx-3.0.xsd) result 200). * http://www.springframework.org/schema/util/spring-util-3.0.xsd with 1 occurrences migrated to: https://www.springframework.org/schema/util/spring-util-3.0.xsd ([https](https://www.springframework.org/schema/util/spring-util-3.0.xsd) result 200). * http://maven.apache.org/maven-v4_0_0.xsd with 1 occurrences migrated to: https://maven.apache.org/maven-v4_0_0.xsd ([https](https://maven.apache.org/maven-v4_0_0.xsd) result 301). * http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd with 2 occurrences migrated to: https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd ([https](https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd) result 302). * http://maven.springframework.org/milestone with 1 occurrences migrated to: https://maven.springframework.org/milestone ([https](https://maven.springframework.org/milestone) result 302). * http://maven.springframework.org/snapshot with 1 occurrences migrated to: https://maven.springframework.org/snapshot ([https](https://maven.springframework.org/snapshot) result 302). * http://repo1.maven.org/maven2 with 1 occurrences migrated to: https://repo1.maven.org/maven2 ([https](https://repo1.maven.org/maven2) result 302). # Ignored These URLs were intentionally ignored. * http://jakarta.apache.org/log4j/ with 2 occurrences * http://java.sun.com/xml/ns/javaee with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 2 occurrences * http://www.springframework.org/schema/beans with 6 occurrences * http://www.springframework.org/schema/context with 2 occurrences * http://www.springframework.org/schema/mvc with 2 occurrences * http://www.springframework.org/schema/tx with 2 occurrences * http://www.springframework.org/schema/util with 2 occurrences * http://www.w3.org/2001/XMLSchema-instance with 5 occurrences --- app/pom.xml | 14 +++++++------- .../WEB-INF/spring/appServlet/app-context.xml | 6 +++--- .../WEB-INF/spring/appServlet/servlet-context.xml | 6 +++--- .../main/webapp/WEB-INF/spring/root-context.xml | 2 +- app/src/main/webapp/WEB-INF/web.xml | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/app/pom.xml b/app/pom.xml index 18ce8a8..7d01a6f 100644 --- a/app/pom.xml +++ b/app/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 com.vmware.example.sqlfire callcenter @@ -168,7 +168,7 @@ org.springsource.maven.snapshot SpringSource Maven Central-compatible Snapshot Repository - http://maven.springframework.org/snapshot + https://maven.springframework.org/snapshot daily @@ -176,25 +176,25 @@ spring-milestone Spring Maven MILESTONE Repository - http://maven.springframework.org/milestone + https://maven.springframework.org/milestone standard repo - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 mirror repo - http://mirrors.ibiblio.org/pub/mirrors/maven2 + /maven2 com.springsource.repository.bundles.release SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases - http://repository.springsource.com/maven/bundles/release + https://repository.springsource.com/maven/bundles/release com.springsource.repository.bundles.external SpringSource Enterprise Bundle Repository - External Bundle Releases - http://repository.springsource.com/maven/bundles/external + https://repository.springsource.com/maven/bundles/external gemstone diff --git a/app/src/main/webapp/WEB-INF/spring/appServlet/app-context.xml b/app/src/main/webapp/WEB-INF/spring/appServlet/app-context.xml index 634ed31..c538c14 100644 --- a/app/src/main/webapp/WEB-INF/spring/appServlet/app-context.xml +++ b/app/src/main/webapp/WEB-INF/spring/appServlet/app-context.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:tx="http://www.springframework.org/schema/tx" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd - http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd - http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/tx https://www.springframework.org/schema/tx/spring-tx-3.0.xsd + http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util-3.0.xsd"> diff --git a/app/src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml b/app/src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml index 3db79ce..09c7b53 100644 --- a/app/src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml +++ b/app/src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" - xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-3.0.xsd"> diff --git a/app/src/main/webapp/WEB-INF/spring/root-context.xml b/app/src/main/webapp/WEB-INF/spring/root-context.xml index c656843..5eafea7 100644 --- a/app/src/main/webapp/WEB-INF/spring/root-context.xml +++ b/app/src/main/webapp/WEB-INF/spring/root-context.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> diff --git a/app/src/main/webapp/WEB-INF/web.xml b/app/src/main/webapp/WEB-INF/web.xml index 302f42a..383f102 100644 --- a/app/src/main/webapp/WEB-INF/web.xml +++ b/app/src/main/webapp/WEB-INF/web.xml @@ -1,5 +1,5 @@ - + call-center contextConfigLocation