From 99349033d5a713da65438b13a7fa213e80640c2c Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Sat, 16 Mar 2019 11:52:35 -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). # 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://maven.apache.org/xsd/maven-4.0.0.xsd with 69 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 70 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://projects.spring.io/spring-integration with 70 occurrences migrated to: https://projects.spring.io/spring-integration ([https](https://projects.spring.io/spring-integration) result 301). * http://repo.spring.io/libs-milestone with 2 occurrences migrated to: https://repo.spring.io/libs-milestone ([https](https://repo.spring.io/libs-milestone) result 302). * http://repo.spring.io/libs-snapshot with 2 occurrences migrated to: https://repo.spring.io/libs-snapshot ([https](https://repo.spring.io/libs-snapshot) result 302). * http://repo.spring.io/libs-staging-local with 1 occurrences migrated to: https://repo.spring.io/libs-staging-local ([https](https://repo.spring.io/libs-staging-local) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 138 occurrences * http://www.w3.org/2001/XMLSchema-instance with 69 occurrences --- advanced/advanced-testing-examples/pom.xml | 6 +++--- advanced/dynamic-ftp/pom.xml | 6 +++--- advanced/dynamic-tcp-client/pom.xml | 6 +++--- advanced/pom.xml | 6 +++--- applications/cafe-scripted/pom.xml | 6 +++--- applications/cafe/cafe-amqp/pom.xml | 6 +++--- applications/cafe/cafe-jms/pom.xml | 6 +++--- applications/cafe/cafe-si/pom.xml | 6 +++--- applications/cafe/pom.xml | 6 +++--- applications/file-split-ftp/pom.xml | 6 +++--- applications/loan-broker/pom.xml | 6 +++--- applications/loanshark/pom.xml | 6 +++--- applications/pom.xml | 6 +++--- applications/stomp-chat/pom.xml | 6 +++--- basic/amqp-affinity/pom.xml | 6 +++--- basic/amqp/pom.xml | 6 +++--- basic/barrier/pom.xml | 6 +++--- basic/control-bus/pom.xml | 6 +++--- basic/enricher/pom.xml | 6 +++--- basic/feed/pom.xml | 6 +++--- basic/file/pom.xml | 6 +++--- basic/ftp/pom.xml | 6 +++--- basic/helloworld/pom.xml | 6 +++--- basic/http-boot/pom.xml | 6 +++--- basic/http/pom.xml | 6 +++--- basic/jdbc/pom.xml | 6 +++--- basic/jms/pom.xml | 6 +++--- basic/jmx/pom.xml | 6 +++--- basic/jpa/pom.xml | 6 +++--- basic/kafka/pom.xml | 6 +++--- basic/mail/pom.xml | 6 +++--- basic/mongodb/pom.xml | 6 +++--- basic/mqtt/pom.xml | 6 +++--- basic/oddeven/pom.xml | 6 +++--- basic/pom.xml | 6 +++--- basic/quote/pom.xml | 6 +++--- basic/sftp/pom.xml | 6 +++--- basic/splunk/pom.xml | 6 +++--- basic/tcp-amqp/pom.xml | 6 +++--- basic/tcp-client-server/pom.xml | 6 +++--- basic/testing-examples/pom.xml | 6 +++--- basic/twitter/pom.xml | 6 +++--- basic/web-sockets/pom.xml | 6 +++--- basic/ws-inbound-gateway/pom.xml | 6 +++--- basic/ws-outbound-gateway/pom.xml | 6 +++--- basic/xml/pom.xml | 6 +++--- basic/xmpp/pom.xml | 6 +++--- build.gradle | 14 +++++++------- dsl/cafe-dsl/pom.xml | 6 +++--- dsl/kafka-dsl/pom.xml | 6 +++--- dsl/pom.xml | 6 +++--- dsl/si4demo/pom.xml | 6 +++--- intermediate/async-gateway/pom.xml | 6 +++--- intermediate/dynamic-poller/pom.xml | 6 +++--- intermediate/errorhandling/pom.xml | 6 +++--- intermediate/file-processing/pom.xml | 6 +++--- intermediate/mail-attachments/pom.xml | 6 +++--- intermediate/monitoring/pom.xml | 6 +++--- intermediate/multipart-http/pom.xml | 6 +++--- intermediate/pom.xml | 6 +++--- intermediate/rest-http/pom.xml | 6 +++--- intermediate/retry-and-more/pom.xml | 6 +++--- intermediate/splitter-aggregator-reaper/pom.xml | 6 +++--- intermediate/stored-procedures-derby/pom.xml | 6 +++--- intermediate/stored-procedures-ms/pom.xml | 6 +++--- intermediate/stored-procedures-oracle/pom.xml | 6 +++--- intermediate/stored-procedures-postgresql/pom.xml | 6 +++--- intermediate/tcp-client-server-multiplex/pom.xml | 6 +++--- intermediate/travel/pom.xml | 6 +++--- intermediate/tx-synch/pom.xml | 6 +++--- 70 files changed, 214 insertions(+), 214 deletions(-) diff --git a/advanced/advanced-testing-examples/pom.xml b/advanced/advanced-testing-examples/pom.xml index 8879883f..a8cc2289 100644 --- a/advanced/advanced-testing-examples/pom.xml +++ b/advanced/advanced-testing-examples/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Advanced Testing Examples Advanced Testing Examples - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/advanced/dynamic-ftp/pom.xml b/advanced/dynamic-ftp/pom.xml index 897e5d18..2ac6f216 100644 --- a/advanced/dynamic-ftp/pom.xml +++ b/advanced/dynamic-ftp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Dynamic FTP Demo Dynamic FTP Demo - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/advanced/dynamic-tcp-client/pom.xml b/advanced/dynamic-tcp-client/pom.xml index 291d8a77..6ec1f4ea 100644 --- a/advanced/dynamic-tcp-client/pom.xml +++ b/advanced/dynamic-tcp-client/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Dynamic TCP Client Dynamic TCP Client - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/advanced/pom.xml b/advanced/pom.xml index 8a499457..7ad88585 100644 --- a/advanced/pom.xml +++ b/advanced/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples advanced 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/cafe-scripted/pom.xml b/applications/cafe-scripted/pom.xml index 85f2327e..b8ec5d07 100644 --- a/applications/cafe-scripted/pom.xml +++ b/applications/cafe-scripted/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Cafe Sample (Scripted Implementation) Cafe Sample (Scripted Implementation) - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/cafe/cafe-amqp/pom.xml b/applications/cafe/cafe-amqp/pom.xml index 3ce1ffa3..519f61d1 100644 --- a/applications/cafe/cafe-amqp/pom.xml +++ b/applications/cafe/cafe-amqp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Cafe - With AMQP Message Broker Cafe - With AMQP Message Broker - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/cafe/cafe-jms/pom.xml b/applications/cafe/cafe-jms/pom.xml index 0b368c5e..d83d8724 100644 --- a/applications/cafe/cafe-jms/pom.xml +++ b/applications/cafe/cafe-jms/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Cafe - With JMS Message Broker Cafe - With JMS Message Broker - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/cafe/cafe-si/pom.xml b/applications/cafe/cafe-si/pom.xml index 832b07b9..a884c6c6 100644 --- a/applications/cafe/cafe-si/pom.xml +++ b/applications/cafe/cafe-si/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Cafe - Pure Spring Integration Cafe - Pure Spring Integration - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/cafe/pom.xml b/applications/cafe/pom.xml index 4a3d5149..435b78ba 100644 --- a/applications/cafe/pom.xml +++ b/applications/cafe/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples cafe 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/file-split-ftp/pom.xml b/applications/file-split-ftp/pom.xml index 5d195ec0..e0e75b09 100644 --- a/applications/file-split-ftp/pom.xml +++ b/applications/file-split-ftp/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT File Split FTP File Split FTP - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/loan-broker/pom.xml b/applications/loan-broker/pom.xml index def17d4a..a44a6f33 100644 --- a/applications/loan-broker/pom.xml +++ b/applications/loan-broker/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Loan Broker Sample Loan Broker Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/loanshark/pom.xml b/applications/loanshark/pom.xml index 26d9c4de..4baf1fc6 100644 --- a/applications/loanshark/pom.xml +++ b/applications/loanshark/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples loanshark 4.3.0.BUILD-SNAPSHOT Loan Shark Sample Loan Shark Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/pom.xml b/applications/pom.xml index d6864cb3..414e194a 100644 --- a/applications/pom.xml +++ b/applications/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples applications 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/applications/stomp-chat/pom.xml b/applications/stomp-chat/pom.xml index 16aefe83..85b257e7 100644 --- a/applications/stomp-chat/pom.xml +++ b/applications/stomp-chat/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Web Sockets Stomp Chat Sample Web Sockets Stomp Chat Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/amqp-affinity/pom.xml b/basic/amqp-affinity/pom.xml index d5cc3460..944d3e17 100644 --- a/basic/amqp-affinity/pom.xml +++ b/basic/amqp-affinity/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples amqp-affinity 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/amqp/pom.xml b/basic/amqp/pom.xml index 20444f3d..c254c4ce 100644 --- a/basic/amqp/pom.xml +++ b/basic/amqp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT AMQP Basic Sample AMQP Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/barrier/pom.xml b/basic/barrier/pom.xml index fbcc197a..d1c5122b 100644 --- a/basic/barrier/pom.xml +++ b/basic/barrier/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Barrier Sample Barrier Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/control-bus/pom.xml b/basic/control-bus/pom.xml index 7d3c2c3e..ee8f64b6 100644 --- a/basic/control-bus/pom.xml +++ b/basic/control-bus/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Control Bus Basic Sample Control Bus Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/enricher/pom.xml b/basic/enricher/pom.xml index b30c373f..830701f7 100644 --- a/basic/enricher/pom.xml +++ b/basic/enricher/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Enricher Basic Sample Enricher Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/feed/pom.xml b/basic/feed/pom.xml index fd7e9b1b..eab62e15 100644 --- a/basic/feed/pom.xml +++ b/basic/feed/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Feed (RSS/ATOM) Basic Sample Feed (RSS/ATOM) Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/file/pom.xml b/basic/file/pom.xml index 0572d4c8..cddf2e08 100644 --- a/basic/file/pom.xml +++ b/basic/file/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT File Copy Basic Sample File Copy Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/ftp/pom.xml b/basic/ftp/pom.xml index 88dd3b18..bf8e00c1 100644 --- a/basic/ftp/pom.xml +++ b/basic/ftp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT FTP Basic Sample FTP Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/helloworld/pom.xml b/basic/helloworld/pom.xml index 51065159..a3b86f9c 100644 --- a/basic/helloworld/pom.xml +++ b/basic/helloworld/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Hello World Sample Hello World Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/http-boot/pom.xml b/basic/http-boot/pom.xml index 86ee7c8a..642f329e 100644 --- a/basic/http-boot/pom.xml +++ b/basic/http-boot/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples http-boot 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/http/pom.xml b/basic/http/pom.xml index 62783da9..6c7ba18c 100644 --- a/basic/http/pom.xml +++ b/basic/http/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples http 4.3.0.BUILD-SNAPSHOT HTTP Sample HTTP Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/jdbc/pom.xml b/basic/jdbc/pom.xml index 06e117e6..258b81a0 100644 --- a/basic/jdbc/pom.xml +++ b/basic/jdbc/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT JDBC Basic Sample JDBC Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/jms/pom.xml b/basic/jms/pom.xml index ad666ca5..f5f68f22 100644 --- a/basic/jms/pom.xml +++ b/basic/jms/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT JMS Basic Sample JMS Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/jmx/pom.xml b/basic/jmx/pom.xml index 6fd32d7a..c310478a 100644 --- a/basic/jmx/pom.xml +++ b/basic/jmx/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT JMX Basic Sample JMX Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/jpa/pom.xml b/basic/jpa/pom.xml index 36ed979c..9440a92c 100644 --- a/basic/jpa/pom.xml +++ b/basic/jpa/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT JPA Basic Sample JPA Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/kafka/pom.xml b/basic/kafka/pom.xml index 5864644c..691c4a79 100644 --- a/basic/kafka/pom.xml +++ b/basic/kafka/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Apache Kafka Sample Apache Kafka Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/mail/pom.xml b/basic/mail/pom.xml index e2a749f1..1c4296f8 100644 --- a/basic/mail/pom.xml +++ b/basic/mail/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Mail (IMAP + POP3) Sample Mail (IMAP + POP3) Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/mongodb/pom.xml b/basic/mongodb/pom.xml index b9dfdf13..7f770b7f 100644 --- a/basic/mongodb/pom.xml +++ b/basic/mongodb/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT MongoDb Basic Sample MongoDb Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/mqtt/pom.xml b/basic/mqtt/pom.xml index dec1fe00..39d56dc9 100644 --- a/basic/mqtt/pom.xml +++ b/basic/mqtt/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT MQTT Basic Sample MQTT Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/oddeven/pom.xml b/basic/oddeven/pom.xml index 2000d0e1..3fa63ee7 100644 --- a/basic/oddeven/pom.xml +++ b/basic/oddeven/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Odd-Even Sample Odd-Even Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/pom.xml b/basic/pom.xml index f40c7702..e5777b92 100644 --- a/basic/pom.xml +++ b/basic/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples basic 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/quote/pom.xml b/basic/quote/pom.xml index 01595482..14d14e76 100644 --- a/basic/quote/pom.xml +++ b/basic/quote/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Quote Sample Quote Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/sftp/pom.xml b/basic/sftp/pom.xml index 189a738d..31d257d3 100644 --- a/basic/sftp/pom.xml +++ b/basic/sftp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT SFTP Basic Sample SFTP Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/splunk/pom.xml b/basic/splunk/pom.xml index 6ff8d36a..b77c4379 100644 --- a/basic/splunk/pom.xml +++ b/basic/splunk/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Splunk Sample Splunk Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/tcp-amqp/pom.xml b/basic/tcp-amqp/pom.xml index 18fd7aa1..ac76b3d7 100644 --- a/basic/tcp-amqp/pom.xml +++ b/basic/tcp-amqp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT TCP-AMQP Basic Sample TCP-AMQP Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/tcp-client-server/pom.xml b/basic/tcp-client-server/pom.xml index ea3fcb1e..fd5d975b 100644 --- a/basic/tcp-client-server/pom.xml +++ b/basic/tcp-client-server/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT TCP Client Server Sample TCP Client Server Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/testing-examples/pom.xml b/basic/testing-examples/pom.xml index f0675db1..f58548d5 100644 --- a/basic/testing-examples/pom.xml +++ b/basic/testing-examples/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Testing Examples Testing Examples - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/twitter/pom.xml b/basic/twitter/pom.xml index 0822d2e4..9464db83 100644 --- a/basic/twitter/pom.xml +++ b/basic/twitter/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Twitter Basic Sample Twitter Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/web-sockets/pom.xml b/basic/web-sockets/pom.xml index 329a3c48..cc7827b8 100644 --- a/basic/web-sockets/pom.xml +++ b/basic/web-sockets/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Web Sockets Basic Sample Web Sockets Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/ws-inbound-gateway/pom.xml b/basic/ws-inbound-gateway/pom.xml index da3b7d9b..69ab113b 100644 --- a/basic/ws-inbound-gateway/pom.xml +++ b/basic/ws-inbound-gateway/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples ws-inbound-gateway 4.3.0.BUILD-SNAPSHOT WS Inbound Gateway Sample WS Inbound Gateway Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/ws-outbound-gateway/pom.xml b/basic/ws-outbound-gateway/pom.xml index 946c59dc..66f5a584 100644 --- a/basic/ws-outbound-gateway/pom.xml +++ b/basic/ws-outbound-gateway/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT WS Outbound Gateway Sample WS Outbound Gateway Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/xml/pom.xml b/basic/xml/pom.xml index f984379e..057579fb 100644 --- a/basic/xml/pom.xml +++ b/basic/xml/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT XML Sample XML Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/basic/xmpp/pom.xml b/basic/xmpp/pom.xml index 2f08ebfd..eed29cca 100644 --- a/basic/xmpp/pom.xml +++ b/basic/xmpp/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT XMPP Basic Sample XMPP Basic Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/build.gradle b/build.gradle index 32da0d4b..aaa61a4f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { repositories { - maven { url 'http://repo.spring.io/libs-snapshot' } - maven { url "http://repo.spring.io/libs-milestone" } + maven { url 'https://repo.spring.io/libs-snapshot' } + maven { url "https://repo.spring.io/libs-milestone" } } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion") @@ -17,7 +17,7 @@ apply plugin: 'base' apply plugin: 'idea' ext { - linkHomepage = 'http://projects.spring.io/spring-integration' + linkHomepage = 'https://projects.spring.io/spring-integration' linkCi = 'https://build.spring.io/browse/INTSAMPLES' linkIssue = 'https://jira.spring.io/browse/INTSAMPLES' linkScmUrl = 'https://github.com/spring-projects/spring-integration-samples' @@ -29,9 +29,9 @@ allprojects { group = 'org.springframework.integration.samples' repositories { - maven { url 'http://repo.spring.io/libs-snapshot' } - maven { url 'http://repo.spring.io/libs-milestone' } -// maven { url 'http://repo.spring.io/libs-staging-local' } + maven { url 'https://repo.spring.io/libs-snapshot' } + maven { url 'https://repo.spring.io/libs-milestone' } +// maven { url 'https://repo.spring.io/libs-staging-local' } } } @@ -57,7 +57,7 @@ subprojects { subproject -> 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' } } diff --git a/dsl/cafe-dsl/pom.xml b/dsl/cafe-dsl/pom.xml index 9da7978f..14b1024a 100644 --- a/dsl/cafe-dsl/pom.xml +++ b/dsl/cafe-dsl/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Java DSL Cafe Sample Java DSL Cafe Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/dsl/kafka-dsl/pom.xml b/dsl/kafka-dsl/pom.xml index 7c49091a..323563b3 100644 --- a/dsl/kafka-dsl/pom.xml +++ b/dsl/kafka-dsl/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Java DSL Kafka Sample Java DSL Kafka Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/dsl/pom.xml b/dsl/pom.xml index 493dd8f6..e40b432e 100644 --- a/dsl/pom.xml +++ b/dsl/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples dsl 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/dsl/si4demo/pom.xml b/dsl/si4demo/pom.xml index e622ba93..945e85c8 100644 --- a/dsl/si4demo/pom.xml +++ b/dsl/si4demo/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 org.springframework.boot @@ -11,7 +11,7 @@ 4.3.0.BUILD-SNAPSHOT Java Configuration/DSL Sample Java Configuration/DSL Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -19,7 +19,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/async-gateway/pom.xml b/intermediate/async-gateway/pom.xml index acbab836..05cff16c 100644 --- a/intermediate/async-gateway/pom.xml +++ b/intermediate/async-gateway/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Async Gateway Sample Async Gateway Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/dynamic-poller/pom.xml b/intermediate/dynamic-poller/pom.xml index 0d18f613..25473487 100644 --- a/intermediate/dynamic-poller/pom.xml +++ b/intermediate/dynamic-poller/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Dynamic Poller Sample Dynamic Poller Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/errorhandling/pom.xml b/intermediate/errorhandling/pom.xml index 292108e8..29db1480 100644 --- a/intermediate/errorhandling/pom.xml +++ b/intermediate/errorhandling/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Error Handling Sample Error Handling Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/file-processing/pom.xml b/intermediate/file-processing/pom.xml index df474b2e..04a74e0c 100644 --- a/intermediate/file-processing/pom.xml +++ b/intermediate/file-processing/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT File Processing Sample File Processing Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/mail-attachments/pom.xml b/intermediate/mail-attachments/pom.xml index 258464b2..da9abc79 100644 --- a/intermediate/mail-attachments/pom.xml +++ b/intermediate/mail-attachments/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Mail Attachment Sample Mail Attachment Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/monitoring/pom.xml b/intermediate/monitoring/pom.xml index e7c34625..6b2bbfef 100644 --- a/intermediate/monitoring/pom.xml +++ b/intermediate/monitoring/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples monitoring 4.3.0.BUILD-SNAPSHOT Monitoring Application Monitoring Application - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/multipart-http/pom.xml b/intermediate/multipart-http/pom.xml index 052be8a4..7c258890 100644 --- a/intermediate/multipart-http/pom.xml +++ b/intermediate/multipart-http/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples multipart-http 4.3.0.BUILD-SNAPSHOT HTTP Multipart Demo HTTP Multipart Demo - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/pom.xml b/intermediate/pom.xml index a0bfbb7f..9745ab43 100644 --- a/intermediate/pom.xml +++ b/intermediate/pom.xml @@ -1,11 +1,11 @@ - 4.0.0 org.springframework.integration.samples intermediate 4.3.0.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -13,7 +13,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/rest-http/pom.xml b/intermediate/rest-http/pom.xml index 061bc683..df159e2c 100644 --- a/intermediate/rest-http/pom.xml +++ b/intermediate/rest-http/pom.xml @@ -1,12 +1,12 @@ - + 4.0.0 org.springframework.integration.samples rest-http 4.3.0.BUILD-SNAPSHOT Spring Integration Rest HTTP Path Usage Demo Spring Integration Rest HTTP Path Usage Demo - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -14,7 +14,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/retry-and-more/pom.xml b/intermediate/retry-and-more/pom.xml index afd0349d..80a5ba39 100644 --- a/intermediate/retry-and-more/pom.xml +++ b/intermediate/retry-and-more/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Retry and More Sample Retry and More Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/splitter-aggregator-reaper/pom.xml b/intermediate/splitter-aggregator-reaper/pom.xml index 704d5601..c735f958 100644 --- a/intermediate/splitter-aggregator-reaper/pom.xml +++ b/intermediate/splitter-aggregator-reaper/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Splitter-Aggregator-Reaper Sample Splitter-Aggregator-Reaper Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/stored-procedures-derby/pom.xml b/intermediate/stored-procedures-derby/pom.xml index 44b18d74..ce56b3c0 100644 --- a/intermediate/stored-procedures-derby/pom.xml +++ b/intermediate/stored-procedures-derby/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Derby Stored Procedures Sample Derby Stored Procedures Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/stored-procedures-ms/pom.xml b/intermediate/stored-procedures-ms/pom.xml index c33a2fd9..f68c88fd 100644 --- a/intermediate/stored-procedures-ms/pom.xml +++ b/intermediate/stored-procedures-ms/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT MS SQLServer Stored Procedures Sample MS SQLServer Stored Procedures Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/stored-procedures-oracle/pom.xml b/intermediate/stored-procedures-oracle/pom.xml index 09c37ad8..8f433573 100644 --- a/intermediate/stored-procedures-oracle/pom.xml +++ b/intermediate/stored-procedures-oracle/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Oracle Stored Procedures Sample Oracle Stored Procedures Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/stored-procedures-postgresql/pom.xml b/intermediate/stored-procedures-postgresql/pom.xml index c350afe5..665ae31c 100644 --- a/intermediate/stored-procedures-postgresql/pom.xml +++ b/intermediate/stored-procedures-postgresql/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT PostgreSQL Stored Procedures Sample PostgreSQL Stored Procedures Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/tcp-client-server-multiplex/pom.xml b/intermediate/tcp-client-server-multiplex/pom.xml index 3dea8028..bd45f088 100644 --- a/intermediate/tcp-client-server-multiplex/pom.xml +++ b/intermediate/tcp-client-server-multiplex/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT TCP Client Server Multiplexing Sample TCP Client Server Multiplexing Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/travel/pom.xml b/intermediate/travel/pom.xml index 76886b27..21cae92f 100644 --- a/intermediate/travel/pom.xml +++ b/intermediate/travel/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Travel Services Sample Travel Services Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/intermediate/tx-synch/pom.xml b/intermediate/tx-synch/pom.xml index 754d92ee..2286c38b 100644 --- a/intermediate/tx-synch/pom.xml +++ b/intermediate/tx-synch/pom.xml @@ -1,5 +1,5 @@ - 4.0.0 org.springframework.integration.samples @@ -7,7 +7,7 @@ 4.3.0.BUILD-SNAPSHOT Transaction Synchronization Sample Transaction Synchronization Sample - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -15,7 +15,7 @@ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo