From 4f48dce420011bfa520938745de8d6262e89bf6b Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 5 Mar 2019 23:44:17 -0600 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 fixed successfully. * http://www.apache.org/licenses/LICENSE-2.0.txt 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 migrated to: https://projects.spring.io/spring-integration ([https](https://projects.spring.io/spring-integration) result 301). * http://repo.spring.io/libs-milestone migrated to: https://repo.spring.io/libs-milestone ([https](https://repo.spring.io/libs-milestone) result 302). * http://repo.spring.io/libs-snapshot migrated to: https://repo.spring.io/libs-snapshot ([https](https://repo.spring.io/libs-snapshot) result 302). * http://repo.spring.io/libs-staging-local 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 * http://maven.apache.org/xsd/maven-4.0.0.xsd * http://www.w3.org/2001/XMLSchema-instance --- advanced/advanced-testing-examples/pom.xml | 4 ++-- advanced/dynamic-ftp/pom.xml | 4 ++-- advanced/dynamic-tcp-client/pom.xml | 4 ++-- advanced/pom.xml | 4 ++-- applications/cafe-scripted/pom.xml | 4 ++-- applications/cafe/cafe-amqp/pom.xml | 4 ++-- applications/cafe/cafe-jms/pom.xml | 4 ++-- applications/cafe/cafe-si/pom.xml | 4 ++-- applications/cafe/pom.xml | 4 ++-- applications/file-split-ftp/pom.xml | 4 ++-- applications/loan-broker/pom.xml | 4 ++-- applications/loanshark/pom.xml | 4 ++-- applications/pom.xml | 4 ++-- applications/stomp-chat/pom.xml | 4 ++-- basic/amqp/pom.xml | 4 ++-- basic/barrier/pom.xml | 4 ++-- basic/control-bus/pom.xml | 4 ++-- basic/enricher/pom.xml | 4 ++-- basic/feed/pom.xml | 4 ++-- basic/file/pom.xml | 4 ++-- basic/ftp/pom.xml | 4 ++-- basic/helloworld/pom.xml | 4 ++-- basic/http/pom.xml | 4 ++-- basic/jdbc/pom.xml | 4 ++-- basic/jms/pom.xml | 4 ++-- basic/jmx/pom.xml | 4 ++-- basic/jpa/pom.xml | 4 ++-- basic/kafka/pom.xml | 4 ++-- basic/mail/pom.xml | 4 ++-- basic/mongodb/pom.xml | 4 ++-- basic/mqtt/pom.xml | 4 ++-- basic/oddeven/pom.xml | 4 ++-- basic/pom.xml | 4 ++-- basic/quote/pom.xml | 4 ++-- basic/sftp/pom.xml | 4 ++-- basic/splunk/pom.xml | 4 ++-- basic/tcp-amqp/pom.xml | 4 ++-- basic/tcp-broadcast/pom.xml | 4 ++-- basic/tcp-client-server/pom.xml | 4 ++-- basic/testing-examples/pom.xml | 4 ++-- basic/twitter/pom.xml | 4 ++-- basic/web-sockets/pom.xml | 4 ++-- basic/ws-inbound-gateway/pom.xml | 4 ++-- basic/ws-outbound-gateway/pom.xml | 4 ++-- basic/xml/pom.xml | 4 ++-- basic/xmpp/pom.xml | 4 ++-- build.gradle | 12 ++++++------ dsl/cafe-dsl/pom.xml | 4 ++-- dsl/kafka-dsl/pom.xml | 4 ++-- dsl/pom.xml | 4 ++-- dsl/si4demo/pom.xml | 4 ++-- intermediate/async-gateway/pom.xml | 4 ++-- intermediate/dynamic-poller/pom.xml | 4 ++-- intermediate/errorhandling/pom.xml | 4 ++-- intermediate/file-processing/pom.xml | 4 ++-- intermediate/mail-attachments/pom.xml | 4 ++-- intermediate/monitoring/pom.xml | 4 ++-- intermediate/multipart-http/pom.xml | 4 ++-- intermediate/pom.xml | 4 ++-- intermediate/rest-http/pom.xml | 4 ++-- intermediate/retry-and-more/pom.xml | 4 ++-- intermediate/splitter-aggregator-reaper/pom.xml | 4 ++-- intermediate/stored-procedures-derby/pom.xml | 4 ++-- intermediate/stored-procedures-ms/pom.xml | 4 ++-- intermediate/stored-procedures-oracle/pom.xml | 4 ++-- intermediate/stored-procedures-postgresql/pom.xml | 4 ++-- intermediate/tcp-client-server-multiplex/pom.xml | 4 ++-- intermediate/travel/pom.xml | 4 ++-- intermediate/tx-synch/pom.xml | 4 ++-- 69 files changed, 142 insertions(+), 142 deletions(-) diff --git a/advanced/advanced-testing-examples/pom.xml b/advanced/advanced-testing-examples/pom.xml index e5078016..17bf64c1 100644 --- a/advanced/advanced-testing-examples/pom.xml +++ b/advanced/advanced-testing-examples/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Advanced Testing Examples Advanced Testing Examples - 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/advanced/dynamic-ftp/pom.xml b/advanced/dynamic-ftp/pom.xml index 91ae1c17..5a3ae715 100644 --- a/advanced/dynamic-ftp/pom.xml +++ b/advanced/dynamic-ftp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Dynamic FTP Demo Dynamic FTP 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/advanced/dynamic-tcp-client/pom.xml b/advanced/dynamic-tcp-client/pom.xml index 4a739ace..e9425778 100644 --- a/advanced/dynamic-tcp-client/pom.xml +++ b/advanced/dynamic-tcp-client/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 6a1cd255..fb99f25c 100644 --- a/advanced/pom.xml +++ b/advanced/pom.xml @@ -5,7 +5,7 @@ org.springframework.integration.samples advanced 5.1.1.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 d6337317..cec3b2b1 100644 --- a/applications/cafe-scripted/pom.xml +++ b/applications/cafe-scripted/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/cafe/cafe-amqp/pom.xml b/applications/cafe/cafe-amqp/pom.xml index 547038a8..66d3a1ce 100644 --- a/applications/cafe/cafe-amqp/pom.xml +++ b/applications/cafe/cafe-amqp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/cafe/cafe-jms/pom.xml b/applications/cafe/cafe-jms/pom.xml index e8ac56bb..ca42e1c8 100644 --- a/applications/cafe/cafe-jms/pom.xml +++ b/applications/cafe/cafe-jms/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/cafe/cafe-si/pom.xml b/applications/cafe/cafe-si/pom.xml index cd7ee69c..e4139298 100644 --- a/applications/cafe/cafe-si/pom.xml +++ b/applications/cafe/cafe-si/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/cafe/pom.xml b/applications/cafe/pom.xml index e5af4acc..f9e945d1 100644 --- a/applications/cafe/pom.xml +++ b/applications/cafe/pom.xml @@ -5,7 +5,7 @@ org.springframework.integration.samples cafe 5.1.1.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 731be42a..a3b6796d 100644 --- a/applications/file-split-ftp/pom.xml +++ b/applications/file-split-ftp/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 6e2bc2b6..e70f89a3 100644 --- a/applications/loan-broker/pom.xml +++ b/applications/loan-broker/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Loan Broker Sample Loan Broker 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/loanshark/pom.xml b/applications/loanshark/pom.xml index 3bc69646..30f9f016 100644 --- a/applications/loanshark/pom.xml +++ b/applications/loanshark/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 8d08081f..1e5e50e7 100644 --- a/applications/pom.xml +++ b/applications/pom.xml @@ -5,7 +5,7 @@ org.springframework.integration.samples applications 5.1.1.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 d3eae7d7..ce603fb1 100644 --- a/applications/stomp-chat/pom.xml +++ b/applications/stomp-chat/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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/pom.xml b/basic/amqp/pom.xml index 3b374c9c..2f339b7c 100644 --- a/basic/amqp/pom.xml +++ b/basic/amqp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT AMQP Basic Sample AMQP Basic 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/barrier/pom.xml b/basic/barrier/pom.xml index f85f01fc..442bbb17 100644 --- a/basic/barrier/pom.xml +++ b/basic/barrier/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 a526da03..d4af261b 100644 --- a/basic/control-bus/pom.xml +++ b/basic/control-bus/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/enricher/pom.xml b/basic/enricher/pom.xml index 8d1ed4cf..952b3d7d 100644 --- a/basic/enricher/pom.xml +++ b/basic/enricher/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Enricher Basic Sample Enricher Basic 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/feed/pom.xml b/basic/feed/pom.xml index 8ef93094..0d1d3a20 100644 --- a/basic/feed/pom.xml +++ b/basic/feed/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/file/pom.xml b/basic/file/pom.xml index 95b0cad9..6932db48 100644 --- a/basic/file/pom.xml +++ b/basic/file/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/ftp/pom.xml b/basic/ftp/pom.xml index ccb80a96..bc4c1d3d 100644 --- a/basic/ftp/pom.xml +++ b/basic/ftp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT FTP Basic Sample FTP Basic 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/helloworld/pom.xml b/basic/helloworld/pom.xml index d5560356..a4806e6d 100644 --- a/basic/helloworld/pom.xml +++ b/basic/helloworld/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Hello World Sample Hello World 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/http/pom.xml b/basic/http/pom.xml index 87da6300..aa70947b 100644 --- a/basic/http/pom.xml +++ b/basic/http/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 ac8d2376..d4122d75 100644 --- a/basic/jdbc/pom.xml +++ b/basic/jdbc/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT JDBC Basic Sample JDBC Basic 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/jms/pom.xml b/basic/jms/pom.xml index b3da28ed..b059a127 100644 --- a/basic/jms/pom.xml +++ b/basic/jms/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT JMS Basic Sample JMS Basic 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/jmx/pom.xml b/basic/jmx/pom.xml index 9a12e75c..669e9c9b 100644 --- a/basic/jmx/pom.xml +++ b/basic/jmx/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT JMX Basic Sample JMX Basic 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/jpa/pom.xml b/basic/jpa/pom.xml index aefa4ec2..d8d6691c 100644 --- a/basic/jpa/pom.xml +++ b/basic/jpa/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 27ab1357..63c122b6 100644 --- a/basic/kafka/pom.xml +++ b/basic/kafka/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 35cf4640..14effa19 100644 --- a/basic/mail/pom.xml +++ b/basic/mail/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/mongodb/pom.xml b/basic/mongodb/pom.xml index fe75fb89..80672cc6 100644 --- a/basic/mongodb/pom.xml +++ b/basic/mongodb/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT MongoDb Basic Sample MongoDb Basic 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/mqtt/pom.xml b/basic/mqtt/pom.xml index eaef3caf..5fb623f2 100644 --- a/basic/mqtt/pom.xml +++ b/basic/mqtt/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 6f4add07..14705a34 100644 --- a/basic/oddeven/pom.xml +++ b/basic/oddeven/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Odd-Even Sample Odd-Even 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/pom.xml b/basic/pom.xml index 490d9fe0..2c8705a3 100644 --- a/basic/pom.xml +++ b/basic/pom.xml @@ -5,7 +5,7 @@ org.springframework.integration.samples basic 5.1.1.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 09c1cad9..cbe85bea 100644 --- a/basic/quote/pom.xml +++ b/basic/quote/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Quote Sample Quote 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/sftp/pom.xml b/basic/sftp/pom.xml index 4f23f7da..e72c1de9 100644 --- a/basic/sftp/pom.xml +++ b/basic/sftp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT SFTP Basic Sample SFTP Basic 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/splunk/pom.xml b/basic/splunk/pom.xml index d78daa08..1cefe758 100644 --- a/basic/splunk/pom.xml +++ b/basic/splunk/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 a3daf841..09542bdf 100644 --- a/basic/tcp-amqp/pom.xml +++ b/basic/tcp-amqp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/tcp-broadcast/pom.xml b/basic/tcp-broadcast/pom.xml index a819ba57..2687ceec 100644 --- a/basic/tcp-broadcast/pom.xml +++ b/basic/tcp-broadcast/pom.xml @@ -11,7 +11,7 @@ 5.1.1.BUILD-SNAPSHOT TCP Client Broadcast Sample TCP Client Broadcast 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-client-server/pom.xml b/basic/tcp-client-server/pom.xml index 6fcb52f0..4d851d44 100644 --- a/basic/tcp-client-server/pom.xml +++ b/basic/tcp-client-server/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/testing-examples/pom.xml b/basic/testing-examples/pom.xml index 800d858c..cacb7c0f 100644 --- a/basic/testing-examples/pom.xml +++ b/basic/testing-examples/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Testing Examples Testing Examples - 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/twitter/pom.xml b/basic/twitter/pom.xml index d81b9cb1..0ed08c41 100644 --- a/basic/twitter/pom.xml +++ b/basic/twitter/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Twitter Basic Sample Twitter Basic 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/web-sockets/pom.xml b/basic/web-sockets/pom.xml index 7a389141..52054d60 100644 --- a/basic/web-sockets/pom.xml +++ b/basic/web-sockets/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 8ce28cfe..655b2dec 100644 --- a/basic/ws-inbound-gateway/pom.xml +++ b/basic/ws-inbound-gateway/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 0aee1d69..e4257bcc 100644 --- a/basic/ws-outbound-gateway/pom.xml +++ b/basic/ws-outbound-gateway/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/xml/pom.xml b/basic/xml/pom.xml index ab513387..39dab6ff 100644 --- a/basic/xml/pom.xml +++ b/basic/xml/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT XML Sample XML 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/xmpp/pom.xml b/basic/xmpp/pom.xml index 110d3fd3..cee45d28 100644 --- a/basic/xmpp/pom.xml +++ b/basic/xmpp/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT XMPP Basic Sample XMPP Basic 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/build.gradle b/build.gradle index 2b2749db..7d3bf397 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { repositories { - maven { url 'http://repo.spring.io/libs-snapshot' } + maven { url 'https://repo.spring.io/libs-snapshot' } } dependencies { classpath 'io.spring.gradle:dependency-management-plugin:1.0.5.RELEASE' @@ -18,7 +18,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' @@ -30,9 +30,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' } } } @@ -59,7 +59,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 e6b7318b..e0cb8056 100644 --- a/dsl/cafe-dsl/pom.xml +++ b/dsl/cafe-dsl/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 8a2ac60b..0b36ab8b 100644 --- a/dsl/kafka-dsl/pom.xml +++ b/dsl/kafka-dsl/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 0998235a..a14b0eb0 100644 --- a/dsl/pom.xml +++ b/dsl/pom.xml @@ -4,7 +4,7 @@ org.springframework.integration.samples dsl 5.1.1.BUILD-SNAPSHOT - http://projects.spring.io/spring-integration + https://projects.spring.io/spring-integration SpringIO https://spring.io @@ -12,7 +12,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 b7f04989..c4067b15 100644 --- a/dsl/si4demo/pom.xml +++ b/dsl/si4demo/pom.xml @@ -11,7 +11,7 @@ 5.1.1.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 17af6ca0..7f6d5e99 100644 --- a/intermediate/async-gateway/pom.xml +++ b/intermediate/async-gateway/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Async Gateway Sample Async 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/intermediate/dynamic-poller/pom.xml b/intermediate/dynamic-poller/pom.xml index 841b54f4..cfaea38c 100644 --- a/intermediate/dynamic-poller/pom.xml +++ b/intermediate/dynamic-poller/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Dynamic Poller Sample Dynamic Poller 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/intermediate/errorhandling/pom.xml b/intermediate/errorhandling/pom.xml index 8b801690..e451812c 100644 --- a/intermediate/errorhandling/pom.xml +++ b/intermediate/errorhandling/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Error Handling Sample Error Handling 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/intermediate/file-processing/pom.xml b/intermediate/file-processing/pom.xml index 4ef64397..c3d43970 100644 --- a/intermediate/file-processing/pom.xml +++ b/intermediate/file-processing/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT File Processing Sample File Processing 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/intermediate/mail-attachments/pom.xml b/intermediate/mail-attachments/pom.xml index 60ed27eb..9f9a680d 100644 --- a/intermediate/mail-attachments/pom.xml +++ b/intermediate/mail-attachments/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Mail Attachment Sample Mail Attachment 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/intermediate/monitoring/pom.xml b/intermediate/monitoring/pom.xml index 0f953194..b56dc6ce 100644 --- a/intermediate/monitoring/pom.xml +++ b/intermediate/monitoring/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 7f427f99..707f3e77 100644 --- a/intermediate/multipart-http/pom.xml +++ b/intermediate/multipart-http/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 bd891763..7e3d5d75 100644 --- a/intermediate/pom.xml +++ b/intermediate/pom.xml @@ -5,7 +5,7 @@ org.springframework.integration.samples intermediate 5.1.1.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 ce5f9d49..14000d95 100644 --- a/intermediate/rest-http/pom.xml +++ b/intermediate/rest-http/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 ccf5d7da..df95f2ef 100644 --- a/intermediate/retry-and-more/pom.xml +++ b/intermediate/retry-and-more/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/splitter-aggregator-reaper/pom.xml b/intermediate/splitter-aggregator-reaper/pom.xml index 03475ea7..1e998610 100644 --- a/intermediate/splitter-aggregator-reaper/pom.xml +++ b/intermediate/splitter-aggregator-reaper/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/stored-procedures-derby/pom.xml b/intermediate/stored-procedures-derby/pom.xml index 41034f5e..b97997f2 100644 --- a/intermediate/stored-procedures-derby/pom.xml +++ b/intermediate/stored-procedures-derby/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/stored-procedures-ms/pom.xml b/intermediate/stored-procedures-ms/pom.xml index b8a745ea..093904f1 100644 --- a/intermediate/stored-procedures-ms/pom.xml +++ b/intermediate/stored-procedures-ms/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/stored-procedures-oracle/pom.xml b/intermediate/stored-procedures-oracle/pom.xml index 5fd8dc3b..1278f6ff 100644 --- a/intermediate/stored-procedures-oracle/pom.xml +++ b/intermediate/stored-procedures-oracle/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/stored-procedures-postgresql/pom.xml b/intermediate/stored-procedures-postgresql/pom.xml index c54f5d06..745257fe 100644 --- a/intermediate/stored-procedures-postgresql/pom.xml +++ b/intermediate/stored-procedures-postgresql/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/tcp-client-server-multiplex/pom.xml b/intermediate/tcp-client-server-multiplex/pom.xml index cce1a03e..5c0480c8 100644 --- a/intermediate/tcp-client-server-multiplex/pom.xml +++ b/intermediate/tcp-client-server-multiplex/pom.xml @@ -6,7 +6,7 @@ 5.1.1.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 @@ -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/travel/pom.xml b/intermediate/travel/pom.xml index 4d4a5208..1c6a0d1c 100644 --- a/intermediate/travel/pom.xml +++ b/intermediate/travel/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Travel Services Sample Travel Services 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/intermediate/tx-synch/pom.xml b/intermediate/tx-synch/pom.xml index 1d6d6e05..0e30523b 100644 --- a/intermediate/tx-synch/pom.xml +++ b/intermediate/tx-synch/pom.xml @@ -6,7 +6,7 @@ 5.1.1.BUILD-SNAPSHOT Transaction Synchronization Sample Transaction Synchronization 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