From f8c5cf942cb993ed1f211025c5706bffbca3a308 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 19 Mar 2019 21:26:37 -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 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://packages.confluent.io/maven/ (404) with 7 occurrences migrated to: https://packages.confluent.io/maven/ ([https](https://packages.confluent.io/maven/) 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://maven.apache.org/xsd/assembly-1.1.2.xsd with 6 occurrences migrated to: https://maven.apache.org/xsd/assembly-1.1.2.xsd ([https](https://maven.apache.org/xsd/assembly-1.1.2.xsd) result 200). * http://maven.apache.org/xsd/maven-4.0.0.xsd with 61 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://repo.spring.io/libs-milestone-local with 4 occurrences migrated to: https://repo.spring.io/libs-milestone-local ([https](https://repo.spring.io/libs-milestone-local) result 302). * http://repo.spring.io/libs-release-local with 1 occurrences migrated to: https://repo.spring.io/libs-release-local ([https](https://repo.spring.io/libs-release-local) result 302). * http://repo.spring.io/libs-snapshot-local with 4 occurrences migrated to: https://repo.spring.io/libs-snapshot-local ([https](https://repo.spring.io/libs-snapshot-local) result 302). * http://repo.spring.io/release with 2 occurrences migrated to: https://repo.spring.io/release ([https](https://repo.spring.io/release) result 302). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 122 occurrences * http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 with 12 occurrences * http://www.w3.org/2001/XMLSchema-instance with 67 occurrences --- .settings.xml | 10 +++++----- .../kafka-streams-aggregate/pom.xml | 2 +- .../kafka-streams-branching/pom.xml | 2 +- .../kafka-streams-dlq-sample/pom.xml | 2 +- .../kafka-streams-global-table-join/pom.xml | 2 +- .../pom.xml | 4 ++-- .../kafka-streams-interactive-query-basic/pom.xml | 2 +- .../kafka-streams-message-channel/pom.xml | 2 +- .../kafka-streams-product-tracker/pom.xml | 2 +- .../kafka-streams-table-join/pom.xml | 2 +- .../pom.xml | 2 +- .../kafka-streams-word-count/pom.xml | 2 +- kafka-streams-samples/pom.xml | 2 +- kinesis-samples/kinesis-produce-consume/pom.xml | 2 +- kinesis-samples/kinesis-to-webflux/pom.xml | 2 +- kinesis-samples/pom.xml | 2 +- multi-io-samples/multi-io/pom.xml | 2 +- multi-io-samples/pom.xml | 2 +- multibinder-samples/kafka-multibinder-jaas/pom.xml | 2 +- .../multibinder-kafka-rabbit/pom.xml | 2 +- .../multibinder-kafka-streams/pom.xml | 2 +- .../multibinder-two-kafka-clusters/pom.xml | 2 +- multibinder-samples/pom.xml | 2 +- .../partitioning-consumer-sample-kafka/pom.xml | 2 +- .../src/main/docker/assembly-kafka.xml | 2 +- .../partitioning-consumer-sample-rabbit/pom.xml | 2 +- .../src/main/docker/assembly-rabbit.xml | 2 +- .../partitioning-producer-sample/pom.xml | 2 +- .../src/main/docker/assembly-kafka.xml | 2 +- .../src/main/docker/assembly-rabbit.xml | 2 +- partitioning-samples/pom.xml | 2 +- pom.xml | 14 +++++++------- processor-samples/polled-consumer/pom.xml | 2 +- processor-samples/pom.xml | 2 +- processor-samples/reactive-processor/pom.xml | 2 +- processor-samples/sensor-average-reactive/pom.xml | 2 +- processor-samples/streamlistener-basic/pom.xml | 2 +- processor-samples/uppercase-transformer/pom.xml | 2 +- .../src/main/docker/assembly-kafka.xml | 2 +- .../src/main/docker/assembly-rabbit.xml | 2 +- samples-e2e-tests/pom.xml | 2 +- .../custom-confluent-producer1/pom.xml | 4 ++-- .../custom-confluent-producer2/pom.xml | 4 ++-- .../kafka-streams-confluent-consumer/pom.xml | 4 ++-- .../kafka-streams-schema-evolution/pom.xml | 2 +- schema-registry-samples/pom.xml | 2 +- .../schema-registry-confluent/pom.xml | 2 +- .../schema-registry-confluent-consumer/pom.xml | 4 ++-- .../schema-registry-confluent-producer1/pom.xml | 4 ++-- .../schema-registry-confluent-producer2/pom.xml | 4 ++-- .../kafka-streams-consumer/pom.xml | 2 +- .../schema-registry-vanilla/pom.xml | 2 +- .../schema-registry-vanilla-consumer/pom.xml | 2 +- .../schema-registry-vanilla-producer1/pom.xml | 2 +- .../schema-registry-vanilla-producer2/pom.xml | 2 +- .../schema-registry-vanilla-server/pom.xml | 2 +- sink-samples/jdbc-sink/pom.xml | 2 +- sink-samples/pom.xml | 2 +- source-samples/dynamic-destination-source/pom.xml | 2 +- source-samples/jdbc-source/pom.xml | 2 +- source-samples/pom.xml | 2 +- testing-samples/pom.xml | 2 +- testing-samples/test-embedded-kafka/pom.xml | 2 +- testing-samples/testing-demo/pom.xml | 2 +- transaction-kafka-samples/pom.xml | 2 +- .../transaction-http-source/pom.xml | 2 +- .../transaction-logger-sink/pom.xml | 2 +- .../transaction-spring-data-processor/pom.xml | 2 +- 68 files changed, 85 insertions(+), 85 deletions(-) diff --git a/.settings.xml b/.settings.xml index 6c35512..08951ca 100644 --- a/.settings.xml +++ b/.settings.xml @@ -21,7 +21,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -29,7 +29,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -37,7 +37,7 @@ spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -47,7 +47,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -55,7 +55,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false diff --git a/kafka-streams-samples/kafka-streams-aggregate/pom.xml b/kafka-streams-samples/kafka-streams-aggregate/pom.xml index 94ad592..16ea1bc 100644 --- a/kafka-streams-samples/kafka-streams-aggregate/pom.xml +++ b/kafka-streams-samples/kafka-streams-aggregate/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-aggregate diff --git a/kafka-streams-samples/kafka-streams-branching/pom.xml b/kafka-streams-samples/kafka-streams-branching/pom.xml index 9eb45f1..003c24c 100644 --- a/kafka-streams-samples/kafka-streams-branching/pom.xml +++ b/kafka-streams-samples/kafka-streams-branching/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-branching diff --git a/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml b/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml index 9c5f2ed..75e1641 100644 --- a/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml +++ b/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-dlq-sample diff --git a/kafka-streams-samples/kafka-streams-global-table-join/pom.xml b/kafka-streams-samples/kafka-streams-global-table-join/pom.xml index 9202ff9..322e7d6 100644 --- a/kafka-streams-samples/kafka-streams-global-table-join/pom.xml +++ b/kafka-streams-samples/kafka-streams-global-table-join/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-global-table-join diff --git a/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml b/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml index 857e920..a078b7c 100644 --- a/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml +++ b/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-interactive-query-advanced @@ -87,7 +87,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml b/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml index 950a21e..71b81cb 100644 --- a/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml +++ b/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-interactive-query-basic diff --git a/kafka-streams-samples/kafka-streams-message-channel/pom.xml b/kafka-streams-samples/kafka-streams-message-channel/pom.xml index fa72141..1afabb6 100644 --- a/kafka-streams-samples/kafka-streams-message-channel/pom.xml +++ b/kafka-streams-samples/kafka-streams-message-channel/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-message-channel diff --git a/kafka-streams-samples/kafka-streams-product-tracker/pom.xml b/kafka-streams-samples/kafka-streams-product-tracker/pom.xml index 8fa38e4..0e41689 100644 --- a/kafka-streams-samples/kafka-streams-product-tracker/pom.xml +++ b/kafka-streams-samples/kafka-streams-product-tracker/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-product-tracker diff --git a/kafka-streams-samples/kafka-streams-table-join/pom.xml b/kafka-streams-samples/kafka-streams-table-join/pom.xml index 473c2f6..363a1eb 100644 --- a/kafka-streams-samples/kafka-streams-table-join/pom.xml +++ b/kafka-streams-samples/kafka-streams-table-join/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-table-join diff --git a/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/pom.xml b/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/pom.xml index 9f503fa..7ad0b9f 100644 --- a/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/pom.xml +++ b/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-to-rabbitmq-message-channel diff --git a/kafka-streams-samples/kafka-streams-word-count/pom.xml b/kafka-streams-samples/kafka-streams-word-count/pom.xml index e249bd1..60992fd 100644 --- a/kafka-streams-samples/kafka-streams-word-count/pom.xml +++ b/kafka-streams-samples/kafka-streams-word-count/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-word-count diff --git a/kafka-streams-samples/pom.xml b/kafka-streams-samples/pom.xml index 6cfe119..a2acaa9 100644 --- a/kafka-streams-samples/pom.xml +++ b/kafka-streams-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample kafka-streams-samples diff --git a/kinesis-samples/kinesis-produce-consume/pom.xml b/kinesis-samples/kinesis-produce-consume/pom.xml index 60a9ab2..cd4b7a4 100644 --- a/kinesis-samples/kinesis-produce-consume/pom.xml +++ b/kinesis-samples/kinesis-produce-consume/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kinesis-produce-consume diff --git a/kinesis-samples/kinesis-to-webflux/pom.xml b/kinesis-samples/kinesis-to-webflux/pom.xml index 8810238..5be9e20 100644 --- a/kinesis-samples/kinesis-to-webflux/pom.xml +++ b/kinesis-samples/kinesis-to-webflux/pom.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 diff --git a/kinesis-samples/pom.xml b/kinesis-samples/pom.xml index a5f2c1d..aa98a50 100644 --- a/kinesis-samples/pom.xml +++ b/kinesis-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample kinesis-samples diff --git a/multi-io-samples/multi-io/pom.xml b/multi-io-samples/multi-io/pom.xml index 8d37f96..80f9b3f 100644 --- a/multi-io-samples/multi-io/pom.xml +++ b/multi-io-samples/multi-io/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 multi-io diff --git a/multi-io-samples/pom.xml b/multi-io-samples/pom.xml index d1a3ab8..1d7c36b 100644 --- a/multi-io-samples/pom.xml +++ b/multi-io-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample multi-io-samples diff --git a/multibinder-samples/kafka-multibinder-jaas/pom.xml b/multibinder-samples/kafka-multibinder-jaas/pom.xml index 5453b83..71578d5 100644 --- a/multibinder-samples/kafka-multibinder-jaas/pom.xml +++ b/multibinder-samples/kafka-multibinder-jaas/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-multibinder-jaas diff --git a/multibinder-samples/multibinder-kafka-rabbit/pom.xml b/multibinder-samples/multibinder-kafka-rabbit/pom.xml index c6f4ef5..34d0360 100644 --- a/multibinder-samples/multibinder-kafka-rabbit/pom.xml +++ b/multibinder-samples/multibinder-kafka-rabbit/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 multibinder-kafka-rabbit diff --git a/multibinder-samples/multibinder-kafka-streams/pom.xml b/multibinder-samples/multibinder-kafka-streams/pom.xml index 77939b3..f556daa 100644 --- a/multibinder-samples/multibinder-kafka-streams/pom.xml +++ b/multibinder-samples/multibinder-kafka-streams/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 multibinder-kafka-streams diff --git a/multibinder-samples/multibinder-two-kafka-clusters/pom.xml b/multibinder-samples/multibinder-two-kafka-clusters/pom.xml index f0f33ad..b1a88d5 100644 --- a/multibinder-samples/multibinder-two-kafka-clusters/pom.xml +++ b/multibinder-samples/multibinder-two-kafka-clusters/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 multibinder-two-kafka-clusters diff --git a/multibinder-samples/pom.xml b/multibinder-samples/pom.xml index 0d98d62..52796cb 100644 --- a/multibinder-samples/pom.xml +++ b/multibinder-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample multibinder-samples diff --git a/partitioning-samples/partitioning-consumer-sample-kafka/pom.xml b/partitioning-samples/partitioning-consumer-sample-kafka/pom.xml index 4e36e7e..088e781 100644 --- a/partitioning-samples/partitioning-consumer-sample-kafka/pom.xml +++ b/partitioning-samples/partitioning-consumer-sample-kafka/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 partitioning-consumer-sample-kafka diff --git a/partitioning-samples/partitioning-consumer-sample-kafka/src/main/docker/assembly-kafka.xml b/partitioning-samples/partitioning-consumer-sample-kafka/src/main/docker/assembly-kafka.xml index b12f7f6..044f57a 100644 --- a/partitioning-samples/partitioning-consumer-sample-kafka/src/main/docker/assembly-kafka.xml +++ b/partitioning-samples/partitioning-consumer-sample-kafka/src/main/docker/assembly-kafka.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-kafka diff --git a/partitioning-samples/partitioning-consumer-sample-rabbit/pom.xml b/partitioning-samples/partitioning-consumer-sample-rabbit/pom.xml index 8b2a8f7..42f39c5 100644 --- a/partitioning-samples/partitioning-consumer-sample-rabbit/pom.xml +++ b/partitioning-samples/partitioning-consumer-sample-rabbit/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 partitioning-consumer-sample-rabbit diff --git a/partitioning-samples/partitioning-consumer-sample-rabbit/src/main/docker/assembly-rabbit.xml b/partitioning-samples/partitioning-consumer-sample-rabbit/src/main/docker/assembly-rabbit.xml index 3571fb0..4a6e788 100644 --- a/partitioning-samples/partitioning-consumer-sample-rabbit/src/main/docker/assembly-rabbit.xml +++ b/partitioning-samples/partitioning-consumer-sample-rabbit/src/main/docker/assembly-rabbit.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-kafka diff --git a/partitioning-samples/partitioning-producer-sample/pom.xml b/partitioning-samples/partitioning-producer-sample/pom.xml index ad0db86..7cf5d51 100644 --- a/partitioning-samples/partitioning-producer-sample/pom.xml +++ b/partitioning-samples/partitioning-producer-sample/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 partitioning-producer-sample diff --git a/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-kafka.xml b/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-kafka.xml index f69b331..18d8320 100644 --- a/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-kafka.xml +++ b/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-kafka.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-kafka diff --git a/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-rabbit.xml b/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-rabbit.xml index 3426d16..8f3da73 100644 --- a/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-rabbit.xml +++ b/partitioning-samples/partitioning-producer-sample/src/main/docker/assembly-rabbit.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-kafka diff --git a/partitioning-samples/pom.xml b/partitioning-samples/pom.xml index 34caf47..c307020 100644 --- a/partitioning-samples/pom.xml +++ b/partitioning-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample partitioning-samples diff --git a/pom.xml b/pom.xml index 50f06ed..c2c43ce 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample @@ -71,7 +71,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -82,7 +82,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -90,7 +90,7 @@ spring-releases Spring Releases - http://repo.spring.io/release + https://repo.spring.io/release false @@ -100,7 +100,7 @@ spring-snapshots Spring Snapshots - http://repo.spring.io/libs-snapshot-local + https://repo.spring.io/libs-snapshot-local true @@ -111,7 +111,7 @@ spring-milestones Spring Milestones - http://repo.spring.io/libs-milestone-local + https://repo.spring.io/libs-milestone-local false @@ -119,7 +119,7 @@ spring-releases Spring Releases - http://repo.spring.io/libs-release-local + https://repo.spring.io/libs-release-local false diff --git a/processor-samples/polled-consumer/pom.xml b/processor-samples/polled-consumer/pom.xml index fc3ce32..5720de9 100644 --- a/processor-samples/polled-consumer/pom.xml +++ b/processor-samples/polled-consumer/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 polled-consumer diff --git a/processor-samples/pom.xml b/processor-samples/pom.xml index a9ddf97..9d217d1 100644 --- a/processor-samples/pom.xml +++ b/processor-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample processor-samples diff --git a/processor-samples/reactive-processor/pom.xml b/processor-samples/reactive-processor/pom.xml index 3bc4e34..7ae2424 100644 --- a/processor-samples/reactive-processor/pom.xml +++ b/processor-samples/reactive-processor/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 reactive-processor diff --git a/processor-samples/sensor-average-reactive/pom.xml b/processor-samples/sensor-average-reactive/pom.xml index bfdc090..b06c488 100644 --- a/processor-samples/sensor-average-reactive/pom.xml +++ b/processor-samples/sensor-average-reactive/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 sensor-average-reactive diff --git a/processor-samples/streamlistener-basic/pom.xml b/processor-samples/streamlistener-basic/pom.xml index c52c8c9..14b7804 100644 --- a/processor-samples/streamlistener-basic/pom.xml +++ b/processor-samples/streamlistener-basic/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 streamlistener-basic diff --git a/processor-samples/uppercase-transformer/pom.xml b/processor-samples/uppercase-transformer/pom.xml index fcbeabf..c760d52 100644 --- a/processor-samples/uppercase-transformer/pom.xml +++ b/processor-samples/uppercase-transformer/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 uppercase-transformer diff --git a/processor-samples/uppercase-transformer/src/main/docker/assembly-kafka.xml b/processor-samples/uppercase-transformer/src/main/docker/assembly-kafka.xml index 34e4485..177b882 100644 --- a/processor-samples/uppercase-transformer/src/main/docker/assembly-kafka.xml +++ b/processor-samples/uppercase-transformer/src/main/docker/assembly-kafka.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-kafka diff --git a/processor-samples/uppercase-transformer/src/main/docker/assembly-rabbit.xml b/processor-samples/uppercase-transformer/src/main/docker/assembly-rabbit.xml index 343467a..3629ac8 100644 --- a/processor-samples/uppercase-transformer/src/main/docker/assembly-rabbit.xml +++ b/processor-samples/uppercase-transformer/src/main/docker/assembly-rabbit.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd"> uppercase-transformer-rabbit diff --git a/samples-e2e-tests/pom.xml b/samples-e2e-tests/pom.xml index 8270ee2..bdcf5d4 100644 --- a/samples-e2e-tests/pom.xml +++ b/samples-e2e-tests/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 samples-e2e-tests diff --git a/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer1/pom.xml b/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer1/pom.xml index 785d8fc..1ce12f4 100644 --- a/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer1/pom.xml +++ b/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer1/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 custom-confluent-producer1 @@ -99,7 +99,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer2/pom.xml b/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer2/pom.xml index 0fd9dfc..154e3f0 100644 --- a/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer2/pom.xml +++ b/schema-registry-samples/kafka-streams-schema-evolution/custom-confluent-producer2/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 custom-confluent-producer2 @@ -99,7 +99,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/kafka-streams-schema-evolution/kafka-streams-confluent-consumer/pom.xml b/schema-registry-samples/kafka-streams-schema-evolution/kafka-streams-confluent-consumer/pom.xml index 693a2be..bc82bd7 100644 --- a/schema-registry-samples/kafka-streams-schema-evolution/kafka-streams-confluent-consumer/pom.xml +++ b/schema-registry-samples/kafka-streams-schema-evolution/kafka-streams-confluent-consumer/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 kafka-streams-confluent-consumer @@ -89,7 +89,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/kafka-streams-schema-evolution/pom.xml b/schema-registry-samples/kafka-streams-schema-evolution/pom.xml index 25279d8..a02a62e 100644 --- a/schema-registry-samples/kafka-streams-schema-evolution/pom.xml +++ b/schema-registry-samples/kafka-streams-schema-evolution/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample kafka-streams-schema-evolution diff --git a/schema-registry-samples/pom.xml b/schema-registry-samples/pom.xml index 8232f0b..114134f 100644 --- a/schema-registry-samples/pom.xml +++ b/schema-registry-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample schema-registry-samples diff --git a/schema-registry-samples/schema-registry-confluent/pom.xml b/schema-registry-samples/schema-registry-confluent/pom.xml index d79456d..33af8a8 100644 --- a/schema-registry-samples/schema-registry-confluent/pom.xml +++ b/schema-registry-samples/schema-registry-confluent/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample schema-registry-confluent diff --git a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-consumer/pom.xml b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-consumer/pom.xml index 24cf97d..15412a3 100644 --- a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-consumer/pom.xml +++ b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-consumer/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-confluent-consumer @@ -101,7 +101,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer1/pom.xml b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer1/pom.xml index d3d5ff9..3475b2e 100644 --- a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer1/pom.xml +++ b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer1/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-confluent-producer1 @@ -122,7 +122,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer2/pom.xml b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer2/pom.xml index 173e575..c6797eb 100644 --- a/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer2/pom.xml +++ b/schema-registry-samples/schema-registry-confluent/schema-registry-confluent-producer2/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-confluent-producer2 @@ -122,7 +122,7 @@ confluent - http://packages.confluent.io/maven/ + https://packages.confluent.io/maven/ diff --git a/schema-registry-samples/schema-registry-vanilla/kafka-streams-consumer/pom.xml b/schema-registry-samples/schema-registry-vanilla/kafka-streams-consumer/pom.xml index 3723628..3bc5e23 100644 --- a/schema-registry-samples/schema-registry-vanilla/kafka-streams-consumer/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/kafka-streams-consumer/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 kafka-streams-consumer diff --git a/schema-registry-samples/schema-registry-vanilla/pom.xml b/schema-registry-samples/schema-registry-vanilla/pom.xml index eed0cea..2a0ac24 100644 --- a/schema-registry-samples/schema-registry-vanilla/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample schema-registry-vanilla diff --git a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-consumer/pom.xml b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-consumer/pom.xml index 881fbb6..c01c688 100644 --- a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-consumer/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-consumer/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-vanilla-consumer diff --git a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer1/pom.xml b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer1/pom.xml index beef0f8..968e9c8 100644 --- a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer1/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer1/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-vanilla-producer1 diff --git a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer2/pom.xml b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer2/pom.xml index 0f9e180..dc7a613 100644 --- a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer2/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-producer2/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-vanilla-producer2 diff --git a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-server/pom.xml b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-server/pom.xml index 65aeeaa..508ad4f 100644 --- a/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-server/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla/schema-registry-vanilla-server/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 schema-registry-vanilla-server diff --git a/sink-samples/jdbc-sink/pom.xml b/sink-samples/jdbc-sink/pom.xml index 07af99d..fdfc379 100644 --- a/sink-samples/jdbc-sink/pom.xml +++ b/sink-samples/jdbc-sink/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 sample-jdbc-sink diff --git a/sink-samples/pom.xml b/sink-samples/pom.xml index 8a97360..1fb2fdc 100644 --- a/sink-samples/pom.xml +++ b/sink-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample sink-samples diff --git a/source-samples/dynamic-destination-source/pom.xml b/source-samples/dynamic-destination-source/pom.xml index fbb9187..dcef41c 100644 --- a/source-samples/dynamic-destination-source/pom.xml +++ b/source-samples/dynamic-destination-source/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 dynamic-destination-source diff --git a/source-samples/jdbc-source/pom.xml b/source-samples/jdbc-source/pom.xml index 1119d29..557066b 100644 --- a/source-samples/jdbc-source/pom.xml +++ b/source-samples/jdbc-source/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 sample-jdbc-source diff --git a/source-samples/pom.xml b/source-samples/pom.xml index 6e9e157..6f141cf 100644 --- a/source-samples/pom.xml +++ b/source-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample source-samples diff --git a/testing-samples/pom.xml b/testing-samples/pom.xml index dbd9aca..8173321 100644 --- a/testing-samples/pom.xml +++ b/testing-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample testing-samples diff --git a/testing-samples/test-embedded-kafka/pom.xml b/testing-samples/test-embedded-kafka/pom.xml index 63a4f71..b645c04 100644 --- a/testing-samples/test-embedded-kafka/pom.xml +++ b/testing-samples/test-embedded-kafka/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 test-embedded-kafka diff --git a/testing-samples/testing-demo/pom.xml b/testing-samples/testing-demo/pom.xml index 422ec22..aa9d251 100644 --- a/testing-samples/testing-demo/pom.xml +++ b/testing-samples/testing-demo/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 testing-demo diff --git a/transaction-kafka-samples/pom.xml b/transaction-kafka-samples/pom.xml index 389e4e3..66b2789 100644 --- a/transaction-kafka-samples/pom.xml +++ b/transaction-kafka-samples/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 io.spring.cloud.stream.sample transaction-kafka-samples diff --git a/transaction-kafka-samples/transaction-http-source/pom.xml b/transaction-kafka-samples/transaction-http-source/pom.xml index 97ba2e8..f0b09d5 100644 --- a/transaction-kafka-samples/transaction-http-source/pom.xml +++ b/transaction-kafka-samples/transaction-http-source/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 transaction-http-source diff --git a/transaction-kafka-samples/transaction-logger-sink/pom.xml b/transaction-kafka-samples/transaction-logger-sink/pom.xml index a7ee339..377cae4 100644 --- a/transaction-kafka-samples/transaction-logger-sink/pom.xml +++ b/transaction-kafka-samples/transaction-logger-sink/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 transaction-logger-sink diff --git a/transaction-kafka-samples/transaction-spring-data-processor/pom.xml b/transaction-kafka-samples/transaction-spring-data-processor/pom.xml index 8974624..5b5166d 100644 --- a/transaction-kafka-samples/transaction-spring-data-processor/pom.xml +++ b/transaction-kafka-samples/transaction-spring-data-processor/pom.xml @@ -1,5 +1,5 @@ - + 4.0.0 transaction-spring-data-processor