From 0e9b625b0d190814f6e2e64b7650061aef852e44 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 13:25:45 -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://www.apache.org/licenses/ with 1 occurrences migrated to: https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 39 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 4 ++-- .../src/main/java/config/processor/ProcessorApplication.java | 2 +- .../main/java/config/processor/ProcessorModuleDefinition.java | 2 +- double/src/main/java/config/sink/SinkApplication.java | 2 +- double/src/main/java/config/sink/SinkModuleDefinition.java | 2 +- double/src/main/java/config/source/SourceApplication.java | 2 +- .../src/main/java/config/source/SourceModuleDefinition.java | 2 +- double/src/main/java/demo/DoubleApplication.java | 2 +- double/src/test/java/demo/ModuleApplicationTests.java | 2 +- .../src/main/java/demo/MultipleIOChannelsApplication.java | 2 +- multi-io/src/main/java/demo/SampleSink.java | 2 +- multi-io/src/main/java/demo/SampleSource.java | 2 +- multi-io/src/test/java/demo/ModuleApplicationTests.java | 2 +- .../src/main/java/multibinder/BridgeTransformer.java | 2 +- .../src/main/java/multibinder/MultibinderApplication.java | 2 +- .../test/java/multibinder/TwoKafkaBindersApplicationTest.java | 2 +- multibinder/src/main/java/multibinder/BridgeTransformer.java | 2 +- .../src/main/java/multibinder/MultibinderApplication.java | 2 +- .../multibinder/RabbitAndRedisBinderApplicationTests.java | 2 +- rxjava-processor/src/main/java/demo/RxJavaApplication.java | 2 +- rxjava-processor/src/main/java/demo/RxJavaTransformer.java | 2 +- .../src/test/java/demo/ModuleApplicationTests.java | 2 +- sink/src/main/java/demo/LogSink.java | 2 +- sink/src/main/java/demo/SinkApplication.java | 2 +- sink/src/test/java/demo/ModuleApplicationTests.java | 2 +- source/src/main/java/demo/DateFormat.java | 2 +- source/src/main/java/demo/SourceApplication.java | 2 +- source/src/main/java/demo/TimeSource.java | 2 +- source/src/main/java/demo/TimeSourceOptionsMetadata.java | 2 +- source/src/test/java/demo/ModuleApplicationTests.java | 2 +- stream-listener/src/main/java/demo/Converters.java | 2 +- stream-listener/src/main/java/demo/SampleSink.java | 2 +- stream-listener/src/main/java/demo/SampleSource.java | 2 +- stream-listener/src/main/java/demo/SampleTransformer.java | 2 +- .../src/main/java/demo/TypeConversionApplication.java | 2 +- .../src/test/java/demo/ModuleApplicationTests.java | 2 +- transform/src/main/java/demo/LoggingTransformer.java | 2 +- transform/src/main/java/demo/TransformApplication.java | 2 +- transform/src/test/java/demo/ModuleApplicationTests.java | 2 +- 39 files changed, 40 insertions(+), 40 deletions(-) diff --git a/LICENSE b/LICENSE index 8dada3e..9b259bd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -192,7 +192,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/processor/ProcessorApplication.java b/double/src/main/java/config/processor/ProcessorApplication.java index 5bd2c51..11d5fa6 100644 --- a/double/src/main/java/config/processor/ProcessorApplication.java +++ b/double/src/main/java/config/processor/ProcessorApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/processor/ProcessorModuleDefinition.java b/double/src/main/java/config/processor/ProcessorModuleDefinition.java index 66227b5..77a750b 100644 --- a/double/src/main/java/config/processor/ProcessorModuleDefinition.java +++ b/double/src/main/java/config/processor/ProcessorModuleDefinition.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/sink/SinkApplication.java b/double/src/main/java/config/sink/SinkApplication.java index e093d1f..e4c280a 100644 --- a/double/src/main/java/config/sink/SinkApplication.java +++ b/double/src/main/java/config/sink/SinkApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/sink/SinkModuleDefinition.java b/double/src/main/java/config/sink/SinkModuleDefinition.java index 995ff62..de7b632 100644 --- a/double/src/main/java/config/sink/SinkModuleDefinition.java +++ b/double/src/main/java/config/sink/SinkModuleDefinition.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/source/SourceApplication.java b/double/src/main/java/config/source/SourceApplication.java index f1d9077..4fbf077 100644 --- a/double/src/main/java/config/source/SourceApplication.java +++ b/double/src/main/java/config/source/SourceApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/config/source/SourceModuleDefinition.java b/double/src/main/java/config/source/SourceModuleDefinition.java index 2156887..e949333 100644 --- a/double/src/main/java/config/source/SourceModuleDefinition.java +++ b/double/src/main/java/config/source/SourceModuleDefinition.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/main/java/demo/DoubleApplication.java b/double/src/main/java/demo/DoubleApplication.java index 4e1e458..0f83bcb 100644 --- a/double/src/main/java/demo/DoubleApplication.java +++ b/double/src/main/java/demo/DoubleApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/double/src/test/java/demo/ModuleApplicationTests.java b/double/src/test/java/demo/ModuleApplicationTests.java index 361e028..0fa1ea0 100644 --- a/double/src/test/java/demo/ModuleApplicationTests.java +++ b/double/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multi-io/src/main/java/demo/MultipleIOChannelsApplication.java b/multi-io/src/main/java/demo/MultipleIOChannelsApplication.java index bee0236..ef3d366 100644 --- a/multi-io/src/main/java/demo/MultipleIOChannelsApplication.java +++ b/multi-io/src/main/java/demo/MultipleIOChannelsApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multi-io/src/main/java/demo/SampleSink.java b/multi-io/src/main/java/demo/SampleSink.java index b61b5ee..3c473d1 100644 --- a/multi-io/src/main/java/demo/SampleSink.java +++ b/multi-io/src/main/java/demo/SampleSink.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multi-io/src/main/java/demo/SampleSource.java b/multi-io/src/main/java/demo/SampleSource.java index 238d02e..fef5c08 100644 --- a/multi-io/src/main/java/demo/SampleSource.java +++ b/multi-io/src/main/java/demo/SampleSource.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multi-io/src/test/java/demo/ModuleApplicationTests.java b/multi-io/src/test/java/demo/ModuleApplicationTests.java index 463a2ab..837f1b1 100644 --- a/multi-io/src/test/java/demo/ModuleApplicationTests.java +++ b/multi-io/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder-differentsystems/src/main/java/multibinder/BridgeTransformer.java b/multibinder-differentsystems/src/main/java/multibinder/BridgeTransformer.java index d68720f..cb51f1a 100644 --- a/multibinder-differentsystems/src/main/java/multibinder/BridgeTransformer.java +++ b/multibinder-differentsystems/src/main/java/multibinder/BridgeTransformer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder-differentsystems/src/main/java/multibinder/MultibinderApplication.java b/multibinder-differentsystems/src/main/java/multibinder/MultibinderApplication.java index 7aba5f6..6359938 100644 --- a/multibinder-differentsystems/src/main/java/multibinder/MultibinderApplication.java +++ b/multibinder-differentsystems/src/main/java/multibinder/MultibinderApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder-differentsystems/src/test/java/multibinder/TwoKafkaBindersApplicationTest.java b/multibinder-differentsystems/src/test/java/multibinder/TwoKafkaBindersApplicationTest.java index 06c4c6e..d1419e4 100644 --- a/multibinder-differentsystems/src/test/java/multibinder/TwoKafkaBindersApplicationTest.java +++ b/multibinder-differentsystems/src/test/java/multibinder/TwoKafkaBindersApplicationTest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder/src/main/java/multibinder/BridgeTransformer.java b/multibinder/src/main/java/multibinder/BridgeTransformer.java index d68720f..cb51f1a 100644 --- a/multibinder/src/main/java/multibinder/BridgeTransformer.java +++ b/multibinder/src/main/java/multibinder/BridgeTransformer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder/src/main/java/multibinder/MultibinderApplication.java b/multibinder/src/main/java/multibinder/MultibinderApplication.java index 7aba5f6..6359938 100644 --- a/multibinder/src/main/java/multibinder/MultibinderApplication.java +++ b/multibinder/src/main/java/multibinder/MultibinderApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/multibinder/src/test/java/multibinder/RabbitAndRedisBinderApplicationTests.java b/multibinder/src/test/java/multibinder/RabbitAndRedisBinderApplicationTests.java index 991a404..e78865d 100644 --- a/multibinder/src/test/java/multibinder/RabbitAndRedisBinderApplicationTests.java +++ b/multibinder/src/test/java/multibinder/RabbitAndRedisBinderApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/rxjava-processor/src/main/java/demo/RxJavaApplication.java b/rxjava-processor/src/main/java/demo/RxJavaApplication.java index 78fc214..e35ed02 100644 --- a/rxjava-processor/src/main/java/demo/RxJavaApplication.java +++ b/rxjava-processor/src/main/java/demo/RxJavaApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/rxjava-processor/src/main/java/demo/RxJavaTransformer.java b/rxjava-processor/src/main/java/demo/RxJavaTransformer.java index 8ed8146..3ebd501 100644 --- a/rxjava-processor/src/main/java/demo/RxJavaTransformer.java +++ b/rxjava-processor/src/main/java/demo/RxJavaTransformer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/rxjava-processor/src/test/java/demo/ModuleApplicationTests.java b/rxjava-processor/src/test/java/demo/ModuleApplicationTests.java index 4e6887b..d107e82 100644 --- a/rxjava-processor/src/test/java/demo/ModuleApplicationTests.java +++ b/rxjava-processor/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/sink/src/main/java/demo/LogSink.java b/sink/src/main/java/demo/LogSink.java index 8caaaf1..1407370 100644 --- a/sink/src/main/java/demo/LogSink.java +++ b/sink/src/main/java/demo/LogSink.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/sink/src/main/java/demo/SinkApplication.java b/sink/src/main/java/demo/SinkApplication.java index 8e2c3a1..d3863ae 100644 --- a/sink/src/main/java/demo/SinkApplication.java +++ b/sink/src/main/java/demo/SinkApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/sink/src/test/java/demo/ModuleApplicationTests.java b/sink/src/test/java/demo/ModuleApplicationTests.java index f2a02f2..3bb4676 100644 --- a/sink/src/test/java/demo/ModuleApplicationTests.java +++ b/sink/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/source/src/main/java/demo/DateFormat.java b/source/src/main/java/demo/DateFormat.java index 17e134c..b2a5d6b 100644 --- a/source/src/main/java/demo/DateFormat.java +++ b/source/src/main/java/demo/DateFormat.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/source/src/main/java/demo/SourceApplication.java b/source/src/main/java/demo/SourceApplication.java index 2770520..cabd754 100644 --- a/source/src/main/java/demo/SourceApplication.java +++ b/source/src/main/java/demo/SourceApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/source/src/main/java/demo/TimeSource.java b/source/src/main/java/demo/TimeSource.java index 0e851a7..93c5d89 100644 --- a/source/src/main/java/demo/TimeSource.java +++ b/source/src/main/java/demo/TimeSource.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/source/src/main/java/demo/TimeSourceOptionsMetadata.java b/source/src/main/java/demo/TimeSourceOptionsMetadata.java index d88fda6..4050ffa 100644 --- a/source/src/main/java/demo/TimeSourceOptionsMetadata.java +++ b/source/src/main/java/demo/TimeSourceOptionsMetadata.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/source/src/test/java/demo/ModuleApplicationTests.java b/source/src/test/java/demo/ModuleApplicationTests.java index ae245b5..371a5bf 100644 --- a/source/src/test/java/demo/ModuleApplicationTests.java +++ b/source/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/main/java/demo/Converters.java b/stream-listener/src/main/java/demo/Converters.java index 0f09f67..c521fd1 100644 --- a/stream-listener/src/main/java/demo/Converters.java +++ b/stream-listener/src/main/java/demo/Converters.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/main/java/demo/SampleSink.java b/stream-listener/src/main/java/demo/SampleSink.java index e4c652e..d7b597d 100644 --- a/stream-listener/src/main/java/demo/SampleSink.java +++ b/stream-listener/src/main/java/demo/SampleSink.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/main/java/demo/SampleSource.java b/stream-listener/src/main/java/demo/SampleSource.java index cf5276b..0d32e5d 100644 --- a/stream-listener/src/main/java/demo/SampleSource.java +++ b/stream-listener/src/main/java/demo/SampleSource.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/main/java/demo/SampleTransformer.java b/stream-listener/src/main/java/demo/SampleTransformer.java index faab174..b02b89e 100644 --- a/stream-listener/src/main/java/demo/SampleTransformer.java +++ b/stream-listener/src/main/java/demo/SampleTransformer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/main/java/demo/TypeConversionApplication.java b/stream-listener/src/main/java/demo/TypeConversionApplication.java index d3cf00f..df0e641 100644 --- a/stream-listener/src/main/java/demo/TypeConversionApplication.java +++ b/stream-listener/src/main/java/demo/TypeConversionApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/stream-listener/src/test/java/demo/ModuleApplicationTests.java b/stream-listener/src/test/java/demo/ModuleApplicationTests.java index 50b3bcf..c044233 100644 --- a/stream-listener/src/test/java/demo/ModuleApplicationTests.java +++ b/stream-listener/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/transform/src/main/java/demo/LoggingTransformer.java b/transform/src/main/java/demo/LoggingTransformer.java index 9bcfdc5..6d91e48 100644 --- a/transform/src/main/java/demo/LoggingTransformer.java +++ b/transform/src/main/java/demo/LoggingTransformer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/transform/src/main/java/demo/TransformApplication.java b/transform/src/main/java/demo/TransformApplication.java index 48e007b..12e2d6d 100644 --- a/transform/src/main/java/demo/TransformApplication.java +++ b/transform/src/main/java/demo/TransformApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/transform/src/test/java/demo/ModuleApplicationTests.java b/transform/src/test/java/demo/ModuleApplicationTests.java index c1ee7d6..3d27545 100644 --- a/transform/src/test/java/demo/ModuleApplicationTests.java +++ b/transform/src/test/java/demo/ModuleApplicationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,