diff --git a/function-based-stream-app-samples/couchbase-stream-applications/pom.xml b/function-based-stream-app-samples/couchbase-stream-applications/pom.xml index 963557f..618ed32 100644 --- a/function-based-stream-app-samples/couchbase-stream-applications/pom.xml +++ b/function-based-stream-app-samples/couchbase-stream-applications/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.4.0 + 2.4.4 io.spring.example @@ -17,7 +17,7 @@ 8 - 2020.0.0-M5 + 2020.0.2 1.86 3.0.10 1.15.1 diff --git a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-processor/pom.xml b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-processor/pom.xml index ca2edeb..c170c05 100644 --- a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-processor/pom.xml +++ b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-processor/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 io.spring.cloud.stream.sample diff --git a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-stream-sample/image-thumbnail-sink/pom.xml b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-stream-sample/image-thumbnail-sink/pom.xml index e64ac8b..5519d43 100644 --- a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-stream-sample/image-thumbnail-sink/pom.xml +++ b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-stream-sample/image-thumbnail-sink/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 io.spring.cloud.stream.sample @@ -15,7 +15,7 @@ Thumbnail Sink Application 8 - Hoxton.SR8 + 2020.0.2 demo diff --git a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-web/pom.xml b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-web/pom.xml index 1954d78..4e9dec8 100644 --- a/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-web/pom.xml +++ b/function-based-stream-app-samples/image-thumbnail-samples/image-thumbnail-web/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 io.spring.cloud.stream.sample diff --git a/kafka-e2e-kotlin-sample/customer-service/pom.xml b/kafka-e2e-kotlin-sample/customer-service/pom.xml index cab3c09..05f804c 100644 --- a/kafka-e2e-kotlin-sample/customer-service/pom.xml +++ b/kafka-e2e-kotlin-sample/customer-service/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 @@ -20,7 +20,7 @@ 1.3.31 1.8.2 5.2.1 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/kafka-e2e-kotlin-sample/customer-service/src/test/kotlin/kafka/e2e/customer/CustomerServiceApplicationTests.kt b/kafka-e2e-kotlin-sample/customer-service/src/test/kotlin/kafka/e2e/customer/CustomerServiceApplicationTests.kt deleted file mode 100644 index 10ee7cd..0000000 --- a/kafka-e2e-kotlin-sample/customer-service/src/test/kotlin/kafka/e2e/customer/CustomerServiceApplicationTests.kt +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright 2019 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package kafka.e2e.customer - -import org.junit.Test -import org.junit.runner.RunWith -import org.springframework.boot.test.context.SpringBootTest -import org.springframework.test.context.junit4.SpringRunner - -/** - * @author José A. Íñigo - */ - -@RunWith(SpringRunner::class) -@SpringBootTest -class CustomerServiceApplicationTests { - - @Test - fun contextLoads() { - } - -} diff --git a/kafka-e2e-kotlin-sample/order-service/pom.xml b/kafka-e2e-kotlin-sample/order-service/pom.xml index bb3a697..1c8b2c4 100644 --- a/kafka-e2e-kotlin-sample/order-service/pom.xml +++ b/kafka-e2e-kotlin-sample/order-service/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 @@ -20,7 +20,7 @@ 1.3.31 1.8.2 5.2.1 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/kafka-e2e-kotlin-sample/order-service/src/test/kotlin/kafka/e2e/order/OrderServiceApplicationTests.kt b/kafka-e2e-kotlin-sample/order-service/src/test/kotlin/kafka/e2e/order/OrderServiceApplicationTests.kt deleted file mode 100644 index a01e60b..0000000 --- a/kafka-e2e-kotlin-sample/order-service/src/test/kotlin/kafka/e2e/order/OrderServiceApplicationTests.kt +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright 2019 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package kafka.e2e.order - -import org.junit.Test -import org.junit.runner.RunWith -import org.springframework.boot.test.context.SpringBootTest -import org.springframework.test.context.junit4.SpringRunner - -/** - * @author José A. Íñigo - */ - -@RunWith(SpringRunner::class) -@SpringBootTest -class OrderServiceApplicationTests { - - @Test - fun contextLoads() { - } - -} diff --git a/kafka-e2e-kotlin-sample/shipping-service/pom.xml b/kafka-e2e-kotlin-sample/shipping-service/pom.xml index 7c5dcce..039e083 100644 --- a/kafka-e2e-kotlin-sample/shipping-service/pom.xml +++ b/kafka-e2e-kotlin-sample/shipping-service/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 @@ -20,7 +20,7 @@ 1.3.31 1.8.2 5.2.1 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/kafka-e2e-kotlin-sample/shipping-service/src/test/kotlin/kafka/e2e/shipping/ShippingServiceApplicationTests.kt b/kafka-e2e-kotlin-sample/shipping-service/src/test/kotlin/kafka/e2e/shipping/ShippingServiceApplicationTests.kt deleted file mode 100644 index de491ad..0000000 --- a/kafka-e2e-kotlin-sample/shipping-service/src/test/kotlin/kafka/e2e/shipping/ShippingServiceApplicationTests.kt +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright 2019 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package kafka.e2e.shipping - -import org.junit.Test -import org.junit.runner.RunWith -import org.springframework.boot.test.context.SpringBootTest -import org.springframework.test.context.junit4.SpringRunner - -/** - * @author José A. Íñigo - */ - -@RunWith(SpringRunner::class) -@SpringBootTest -class ShippingServiceApplicationTests { - - @Test - fun contextLoads() { - } - -} diff --git a/kafka-native-serialization/pom.xml b/kafka-native-serialization/pom.xml index e513cad..659fd5a 100644 --- a/kafka-native-serialization/pom.xml +++ b/kafka-native-serialization/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 com.example @@ -16,7 +16,7 @@ 1.8 - Horsham.BUILD-SNAPSHOT + 3.1.2 @@ -51,6 +51,11 @@ spring-kafka-test test + + org.junit.vintage + junit-vintage-engine + test + diff --git a/kafka-security-samples/kafka-ssl-demo/pom.xml b/kafka-security-samples/kafka-ssl-demo/pom.xml index 8651c10..2652d33 100644 --- a/kafka-security-samples/kafka-ssl-demo/pom.xml +++ b/kafka-security-samples/kafka-ssl-demo/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.6.RELEASE + 2.4.4 kafka.ssl.demo @@ -15,7 +15,7 @@ Demo project for Spring Boot - Horsham.SR10 + 3.1.2 diff --git a/kafka-security-samples/kafka-ssl-demo/src/test/java/kafka/ssl/demo/KafkaSslDemoApplicationTests.java b/kafka-security-samples/kafka-ssl-demo/src/test/java/kafka/ssl/demo/KafkaSslDemoApplicationTests.java deleted file mode 100644 index c9ef90a..0000000 --- a/kafka-security-samples/kafka-ssl-demo/src/test/java/kafka/ssl/demo/KafkaSslDemoApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package kafka.ssl.demo; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class KafkaSslDemoApplicationTests { - - @Test - void contextLoads() { - } - -} diff --git a/kafka-streams-samples/kafka-streams-aggregate/pom.xml b/kafka-streams-samples/kafka-streams-aggregate/pom.xml index 722ddef..7f09d38 100644 --- a/kafka-streams-samples/kafka-streams-aggregate/pom.xml +++ b/kafka-streams-samples/kafka-streams-aggregate/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -67,6 +68,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/kafka-streams-samples/kafka-streams-avro/pom.xml b/kafka-streams-samples/kafka-streams-avro/pom.xml index f116538..215e9cb 100644 --- a/kafka-streams-samples/kafka-streams-avro/pom.xml +++ b/kafka-streams-samples/kafka-streams-avro/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.4.2 + 2.4.4 com.example @@ -15,7 +15,7 @@ Demo project for Spring Boot 8 - 2020.0.1 + 2020.0.2 5.2.0 1.8.2 @@ -31,6 +31,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT diff --git a/kafka-streams-samples/kafka-streams-branching/pom.xml b/kafka-streams-samples/kafka-streams-branching/pom.xml index 9d3158e..e6033ad 100644 --- a/kafka-streams-samples/kafka-streams-branching/pom.xml +++ b/kafka-streams-samples/kafka-streams-branching/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -67,6 +68,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/kafka-streams-samples/kafka-streams-destination-pattern/pom.xml b/kafka-streams-samples/kafka-streams-destination-pattern/pom.xml index 1b4d7f8..050418d 100644 --- a/kafka-streams-samples/kafka-streams-destination-pattern/pom.xml +++ b/kafka-streams-samples/kafka-streams-destination-pattern/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 com.example @@ -15,7 +15,7 @@ Demo project for Spring Boot - Hoxton.SR8 + 2020.0.2 1.1.0 @@ -31,6 +31,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT diff --git a/kafka-streams-samples/kafka-streams-destination-pattern/src/test/java/com/example/demo/KafkaStreamsMetricsDemoApplicationTests.java b/kafka-streams-samples/kafka-streams-destination-pattern/src/test/java/com/example/demo/KafkaStreamsMetricsDemoApplicationTests.java deleted file mode 100644 index d541b72..0000000 --- a/kafka-streams-samples/kafka-streams-destination-pattern/src/test/java/com/example/demo/KafkaStreamsMetricsDemoApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.example.demo; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class KafkaStreamsMetricsDemoApplicationTests { - - @Test - void contextLoads() { - } - -} diff --git a/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml b/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml index 67a0193..2264383 100644 --- a/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml +++ b/kafka-streams-samples/kafka-streams-dlq-sample/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -67,6 +68,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + 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 75b01aa..9b43b74 100644 --- a/kafka-streams-samples/kafka-streams-global-table-join/pom.xml +++ b/kafka-streams-samples/kafka-streams-global-table-join/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -67,6 +68,7 @@ org.springframework.boot spring-boot-starter-web + diff --git a/kafka-streams-samples/kafka-streams-global-table-join/src/test/java/kafka/streams/globalktable/join/KafkaStreamsGlobalKTableJoinTests.java b/kafka-streams-samples/kafka-streams-global-table-join/src/test/java/kafka/streams/globalktable/join/KafkaStreamsGlobalKTableJoinTests.java deleted file mode 100644 index 2c42236..0000000 --- a/kafka-streams-samples/kafka-streams-global-table-join/src/test/java/kafka/streams/globalktable/join/KafkaStreamsGlobalKTableJoinTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package kafka.streams.globalktable.join; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class KafkaStreamsGlobalKTableJoinTests { - - @Test - @Ignore - public void contextLoads() { - } - -} 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 816466d..66bd4ae 100644 --- a/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml +++ b/kafka-streams-samples/kafka-streams-interactive-query-advanced/pom.xml @@ -12,13 +12,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 1.8.2 - Hoxton.SR2 + 2020.0.2 4.0.0 @@ -59,6 +59,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot diff --git a/kafka-streams-samples/kafka-streams-interactive-query-advanced/src/test/java/kafka/streams/interactive/query/KafkaStreamsInteractiveQueryTests.java b/kafka-streams-samples/kafka-streams-interactive-query-advanced/src/test/java/kafka/streams/interactive/query/KafkaStreamsInteractiveQueryTests.java deleted file mode 100644 index 1d0b41a..0000000 --- a/kafka-streams-samples/kafka-streams-interactive-query-advanced/src/test/java/kafka/streams/interactive/query/KafkaStreamsInteractiveQueryTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package kafka.streams.interactive.query; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class KafkaStreamsInteractiveQueryTests { - - @Test - @Ignore - public void contextLoads() { - } - -} 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 515079e..4d55725 100644 --- a/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml +++ b/kafka-streams-samples/kafka-streams-interactive-query-basic/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot diff --git a/kafka-streams-samples/kafka-streams-inventory-count/pom.xml b/kafka-streams-samples/kafka-streams-inventory-count/pom.xml index 93464ad..9a8c5ba 100644 --- a/kafka-streams-samples/kafka-streams-inventory-count/pom.xml +++ b/kafka-streams-samples/kafka-streams-inventory-count/pom.xml @@ -10,13 +10,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT - 2.5.1 + 2020.0.2 + 2.6.0 @@ -35,6 +35,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -46,12 +47,6 @@ spring-kafka-test test - - org.apache.kafka - kafka-streams-test-utils - ${kafka.version} - test - org.apache.kafka diff --git a/kafka-streams-samples/kafka-streams-message-channel/pom.xml b/kafka-streams-samples/kafka-streams-message-channel/pom.xml index 6b9d692..6d82ece 100644 --- a/kafka-streams-samples/kafka-streams-message-channel/pom.xml +++ b/kafka-streams-samples/kafka-streams-message-channel/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.cloud diff --git a/kafka-streams-samples/kafka-streams-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java b/kafka-streams-samples/kafka-streams-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java deleted file mode 100644 index 12a0160..0000000 --- a/kafka-streams-samples/kafka-streams-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package kafka.streams.message.channel; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class KafkaStreamsWordCountApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/kafka-streams-samples/kafka-streams-metrics-demo/pom.xml b/kafka-streams-samples/kafka-streams-metrics-demo/pom.xml index 00d2d9c..9779590 100644 --- a/kafka-streams-samples/kafka-streams-metrics-demo/pom.xml +++ b/kafka-streams-samples/kafka-streams-metrics-demo/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 com.example @@ -15,7 +15,7 @@ Demo project for Spring Boot - Hoxton.SR8 + 2020.0.2 1.1.0 @@ -31,6 +31,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT diff --git a/kafka-streams-samples/kafka-streams-product-tracker/pom.xml b/kafka-streams-samples/kafka-streams-product-tracker/pom.xml index 9e2619e..5d5a38d 100644 --- a/kafka-streams-samples/kafka-streams-product-tracker/pom.xml +++ b/kafka-streams-samples/kafka-streams-product-tracker/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot diff --git a/kafka-streams-samples/kafka-streams-table-join/pom.xml b/kafka-streams-samples/kafka-streams-table-join/pom.xml index b4bbed1..5e110b4 100644 --- a/kafka-streams-samples/kafka-streams-table-join/pom.xml +++ b/kafka-streams-samples/kafka-streams-table-join/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -37,6 +37,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT org.springframework.boot @@ -67,6 +68,7 @@ org.springframework.boot spring-boot-starter-web + diff --git a/kafka-streams-samples/kafka-streams-table-join/src/test/java/kafka/streams/table/join/KafkaStreamsTableJoinTests.java b/kafka-streams-samples/kafka-streams-table-join/src/test/java/kafka/streams/table/join/KafkaStreamsTableJoinTests.java deleted file mode 100644 index 5dc96d2..0000000 --- a/kafka-streams-samples/kafka-streams-table-join/src/test/java/kafka/streams/table/join/KafkaStreamsTableJoinTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package kafka.streams.table.join; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class KafkaStreamsTableJoinTests { - - @Test - @Ignore - public void contextLoads() { - } - -} 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 13d5ab6..7704658 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 @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java b/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java deleted file mode 100644 index 12a0160..0000000 --- a/kafka-streams-samples/kafka-streams-to-rabbitmq-message-channel/src/test/java/kafka/streams/message/channel/KafkaStreamsWordCountApplicationTests.java +++ /dev/null @@ -1,18 +0,0 @@ -package kafka.streams.message.channel; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class KafkaStreamsWordCountApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/kafka-streams-samples/kafka-streams-word-count/pom.xml b/kafka-streams-samples/kafka-streams-word-count/pom.xml index ecd5b10..cb5ecfb 100644 --- a/kafka-streams-samples/kafka-streams-word-count/pom.xml +++ b/kafka-streams-samples/kafka-streams-word-count/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -79,6 +79,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/kinesis-samples/kinesis-produce-consume/pom.xml b/kinesis-samples/kinesis-produce-consume/pom.xml index 0c8645f..5eb1f33 100644 --- a/kinesis-samples/kinesis-produce-consume/pom.xml +++ b/kinesis-samples/kinesis-produce-consume/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/kinesis-samples/kinesis-to-webflux/pom.xml b/kinesis-samples/kinesis-to-webflux/pom.xml index 9e28212..c0da43d 100644 --- a/kinesis-samples/kinesis-to-webflux/pom.xml +++ b/kinesis-samples/kinesis-to-webflux/pom.xml @@ -14,12 +14,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -55,6 +55,11 @@ reactor-test test + + org.junit.vintage + junit-vintage-engine + test + diff --git a/multi-binder-samples/kafka-multi-binder-jaas/pom.xml b/multi-binder-samples/kafka-multi-binder-jaas/pom.xml index 8f9b8ae..9cad661 100644 --- a/multi-binder-samples/kafka-multi-binder-jaas/pom.xml +++ b/multi-binder-samples/kafka-multi-binder-jaas/pom.xml @@ -13,12 +13,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-binder-samples/kafka-multi-binder-jaas/src/test/java/multibinder/kafka/jaas/MultiBinderKafkaJaasSampleTests.java b/multi-binder-samples/kafka-multi-binder-jaas/src/test/java/multibinder/kafka/jaas/MultiBinderKafkaJaasSampleTests.java deleted file mode 100644 index 21ec364..0000000 --- a/multi-binder-samples/kafka-multi-binder-jaas/src/test/java/multibinder/kafka/jaas/MultiBinderKafkaJaasSampleTests.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2018 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package multibinder.kafka.jaas; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -@Ignore("until we have proper test") -public class MultiBinderKafkaJaasSampleTests { - - @Test - public void contextLoads() { - } - -} diff --git a/multi-binder-samples/multi-binder-dynamic-destinations/pom.xml b/multi-binder-samples/multi-binder-dynamic-destinations/pom.xml index 81d8942..1e9f7c8 100644 --- a/multi-binder-samples/multi-binder-dynamic-destinations/pom.xml +++ b/multi-binder-samples/multi-binder-dynamic-destinations/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-binder-samples/multi-binder-kafka-rabbit/pom.xml b/multi-binder-samples/multi-binder-kafka-rabbit/pom.xml index 1625fa6..82d8334 100644 --- a/multi-binder-samples/multi-binder-kafka-rabbit/pom.xml +++ b/multi-binder-samples/multi-binder-kafka-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-binder-samples/multi-binder-kafka-streams/pom.xml b/multi-binder-samples/multi-binder-kafka-streams/pom.xml index e04ce9c..0e7f300 100644 --- a/multi-binder-samples/multi-binder-kafka-streams/pom.xml +++ b/multi-binder-samples/multi-binder-kafka-streams/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -62,6 +62,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/multi-binder-samples/multi-binder-two-kafka-clusters/pom.xml b/multi-binder-samples/multi-binder-two-kafka-clusters/pom.xml index d20c105..320b9f4 100644 --- a/multi-binder-samples/multi-binder-two-kafka-clusters/pom.xml +++ b/multi-binder-samples/multi-binder-two-kafka-clusters/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -58,6 +58,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/multi-functions-samples/function-composition-kafka/pom.xml b/multi-functions-samples/function-composition-kafka/pom.xml index 5b019b7..72ac923 100644 --- a/multi-functions-samples/function-composition-kafka/pom.xml +++ b/multi-functions-samples/function-composition-kafka/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-functions-samples/function-composition-kafka/src/test/java/demo/ModuleApplicationTests.java b/multi-functions-samples/function-composition-kafka/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index 9ec6f99..0000000 --- a/multi-functions-samples/function-composition-kafka/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = FunctionCompositionDemoApplication.class) -@WebAppConfiguration -@DirtiesContext -public class ModuleApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/multi-functions-samples/function-composition-rabbit/pom.xml b/multi-functions-samples/function-composition-rabbit/pom.xml index fd41ef4..199c613 100644 --- a/multi-functions-samples/function-composition-rabbit/pom.xml +++ b/multi-functions-samples/function-composition-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-functions-samples/function-composition-rabbit/src/test/java/demo/ModuleApplicationTests.java b/multi-functions-samples/function-composition-rabbit/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index 9ec6f99..0000000 --- a/multi-functions-samples/function-composition-rabbit/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = FunctionCompositionDemoApplication.class) -@WebAppConfiguration -@DirtiesContext -public class ModuleApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/multi-functions-samples/multi-functions-kafka/pom.xml b/multi-functions-samples/multi-functions-kafka/pom.xml index f82a8a2..fea053e 100644 --- a/multi-functions-samples/multi-functions-kafka/pom.xml +++ b/multi-functions-samples/multi-functions-kafka/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-functions-samples/multi-functions-kafka/src/test/java/demo/ModuleApplicationTests.java b/multi-functions-samples/multi-functions-kafka/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index ddfb2b7..0000000 --- a/multi-functions-samples/multi-functions-kafka/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = MultipleFunctionsApplication.class) -@WebAppConfiguration -@DirtiesContext -public class ModuleApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/multi-functions-samples/multi-functions-rabbit/pom.xml b/multi-functions-samples/multi-functions-rabbit/pom.xml index b936abf..195a027 100644 --- a/multi-functions-samples/multi-functions-rabbit/pom.xml +++ b/multi-functions-samples/multi-functions-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/multi-functions-samples/multi-functions-rabbit/src/test/java/demo/ModuleApplicationTests.java b/multi-functions-samples/multi-functions-rabbit/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index ddfb2b7..0000000 --- a/multi-functions-samples/multi-functions-rabbit/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = MultipleFunctionsApplication.class) -@WebAppConfiguration -@DirtiesContext -public class ModuleApplicationTests { - - @Test - @Ignore - public void contextLoads() { - } - -} diff --git a/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/pom.xml b/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/pom.xml index 12a53ad..a810f3a 100644 --- a/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/pom.xml +++ b/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/src/test/java/demo/ModuleApplicationTests.java b/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index 472c489..0000000 --- a/partitioning-samples/kafka-partitioning/partitioning-consumer-sample-kafka/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = PartitioningKafkaDemoApplication.class) -@WebAppConfiguration -@DirtiesContext -@Ignore("until we have proper test") -public class ModuleApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/pom.xml b/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/pom.xml index 28728d1..96c52b8 100644 --- a/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/pom.xml +++ b/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/src/test/java/demo/producer/ModuleApplicationTests.java b/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/src/test/java/demo/producer/ModuleApplicationTests.java deleted file mode 100644 index 016e183..0000000 --- a/partitioning-samples/kafka-partitioning/partitioning-producer-sample-kafka/src/test/java/demo/producer/ModuleApplicationTests.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo.producer; - -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE) -@Ignore("until we have proper test") -public class ModuleApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/pom.xml b/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/pom.xml index b6f3e15..cb2e459 100644 --- a/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/pom.xml +++ b/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.2.5.RELEASE + 2.4.4 - Hoxton.SR4 + 2020.0.2 diff --git a/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/src/test/java/demo/ModuleApplicationTests.java b/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/src/test/java/demo/ModuleApplicationTests.java deleted file mode 100644 index 8adfae8..0000000 --- a/partitioning-samples/rabbit-partitioning/partitioning-consumer-sample-rabbit/src/test/java/demo/ModuleApplicationTests.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.annotation.DirtiesContext; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.web.WebAppConfiguration; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = PartitioningRabbitDemoApplication.class) -@WebAppConfiguration -@DirtiesContext -public class ModuleApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/pom.xml b/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/pom.xml index 41c9912..eda5c04 100644 --- a/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/pom.xml +++ b/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.2.5.RELEASE + 2.4.4 - Hoxton.SR4 + 2020.0.2 diff --git a/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/src/test/java/demo/producer/ModuleApplicationTests.java b/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/src/test/java/demo/producer/ModuleApplicationTests.java deleted file mode 100644 index 1498cd6..0000000 --- a/partitioning-samples/rabbit-partitioning/partitioning-producer-sample-rabbit/src/test/java/demo/producer/ModuleApplicationTests.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright 2015 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * 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, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package demo.producer; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE) -public class ModuleApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/pom.xml b/pom.xml index aab67ee..b1fdef2 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 @@ -40,7 +40,7 @@ UTF-8 UTF-8 1.8 - Horsham.BUILD-SNAPSHOT + 3.1.2 diff --git a/processor-samples/polled-consumer/pom.xml b/processor-samples/polled-consumer/pom.xml index 9b011da..9b4dc98 100644 --- a/processor-samples/polled-consumer/pom.xml +++ b/processor-samples/polled-consumer/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -46,6 +46,11 @@ org.springframework.kafka spring-kafka-test + + org.junit.vintage + junit-vintage-engine + test + diff --git a/processor-samples/reactive-processor-kafka/pom.xml b/processor-samples/reactive-processor-kafka/pom.xml index bc60f5e..1b38d1a 100644 --- a/processor-samples/reactive-processor-kafka/pom.xml +++ b/processor-samples/reactive-processor-kafka/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/processor-samples/reactive-processor-rabbit/pom.xml b/processor-samples/reactive-processor-rabbit/pom.xml index cc17a59..4a6f270 100644 --- a/processor-samples/reactive-processor-rabbit/pom.xml +++ b/processor-samples/reactive-processor-rabbit/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/processor-samples/sensor-average-reactive-kafka/pom.xml b/processor-samples/sensor-average-reactive-kafka/pom.xml index 5ee10a4..79d85ab 100644 --- a/processor-samples/sensor-average-reactive-kafka/pom.xml +++ b/processor-samples/sensor-average-reactive-kafka/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/processor-samples/sensor-average-reactive-rabbit/pom.xml b/processor-samples/sensor-average-reactive-rabbit/pom.xml index eac8360..3c0612e 100644 --- a/processor-samples/sensor-average-reactive-rabbit/pom.xml +++ b/processor-samples/sensor-average-reactive-rabbit/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/processor-samples/streamlistener-basic/pom.xml b/processor-samples/streamlistener-basic/pom.xml index 824323f..e737f8c 100644 --- a/processor-samples/streamlistener-basic/pom.xml +++ b/processor-samples/streamlistener-basic/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -43,6 +43,11 @@ spring-cloud-stream-test-support test + + org.junit.vintage + junit-vintage-engine + test + diff --git a/processor-samples/uppercase-transformer/pom.xml b/processor-samples/uppercase-transformer/pom.xml index 8a079d5..61c007b 100644 --- a/processor-samples/uppercase-transformer/pom.xml +++ b/processor-samples/uppercase-transformer/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -42,6 +42,11 @@ spring-cloud-stream-test-support test + + org.junit.vintage + junit-vintage-engine + test + 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 3a79369..42f8dd0 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 @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 1.8.2 4.0.0 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 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 bbe4665..afd68bb 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 @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 1.8.2 4.0.0 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 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 1c88417..f9bb8be 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 @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 4.0.0 @@ -42,6 +42,7 @@ org.springframework.cloud spring-cloud-stream-binder-kafka-streams + 3.1.3-SNAPSHOT io.confluent diff --git a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-consumer/pom.xml b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-consumer/pom.xml index 7ff4c04..7cef860 100644 --- a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-consumer/pom.xml +++ b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-consumer/pom.xml @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.8.2 5.2.0 - Hoxton.SR5 + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer1/pom.xml b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer1/pom.xml index 0de96d9..07c0110 100644 --- a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer1/pom.xml +++ b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer1/pom.xml @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.8.2 5.2.0 - Hoxton.SR5 + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer2/pom.xml b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer2/pom.xml index e88aab7..da3a938 100644 --- a/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer2/pom.xml +++ b/schema-registry-samples/schema-registry-confluent-avro-serializer/schema-registry-confluent-avro-serializer-producer2/pom.xml @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.8.2 5.2.0 - Hoxton.SR5 + 2020.0.2 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 3cf5a2e..6b043c5 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 @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.9.2 5.2.0 - Hoxton.SR5 + 2020.0.2 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 87f32b9..3877536 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 @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.9.2 5.2.0 - Hoxton.SR5 + 2020.0.2 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 9c08f57..652efd7 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 @@ -11,14 +11,14 @@ org.springframework.boot spring-boot-starter-parent - 2.2.7.RELEASE + 2.4.4 1.9.2 5.2.0 - Hoxton.SR5 + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-kafka-binder/kafka-streams-consumer/pom.xml b/schema-registry-samples/schema-registry-vanilla-kafka-binder/kafka-streams-consumer/pom.xml index a3fa38c..4665b66 100644 --- a/schema-registry-samples/schema-registry-vanilla-kafka-binder/kafka-streams-consumer/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-kafka-binder/kafka-streams-consumer/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.6.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-consumer-kafka/pom.xml b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-consumer-kafka/pom.xml index 9de43ca..4054e89 100644 --- a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-consumer-kafka/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-consumer-kafka/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.6.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer1-kafka/pom.xml b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer1-kafka/pom.xml index be00c93..af7066b 100644 --- a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer1-kafka/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer1-kafka/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.6.RELEASE + 2.4.4 1.10.0 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer2-kafka/pom.xml b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer2-kafka/pom.xml index bc0a04f..239fd38 100644 --- a/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer2-kafka/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-kafka-binder/schema-registry-vanilla-producer2-kafka/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.3.6.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-consumer-rabbit/pom.xml b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-consumer-rabbit/pom.xml index 6246191..e04bb73 100644 --- a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-consumer-rabbit/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-consumer-rabbit/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.2.1.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer1-rabbit/pom.xml b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer1-rabbit/pom.xml index 81aeb5f..241ff71 100644 --- a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer1-rabbit/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer1-rabbit/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.2.1.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer2-rabbit/pom.xml b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer2-rabbit/pom.xml index 7731ce8..55bff67 100644 --- a/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer2-rabbit/pom.xml +++ b/schema-registry-samples/schema-registry-vanilla-rabbit-binder/schema-registry-vanilla-producer2-rabbit/pom.xml @@ -11,13 +11,13 @@ org.springframework.boot spring-boot-starter-parent - 2.2.1.RELEASE + 2.4.4 1.8.2 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/schema-registry-samples/spring-schema-registry-kafka-standalone/pom.xml b/schema-registry-samples/spring-schema-registry-kafka-standalone/pom.xml index 56ec835..f262ffc 100644 --- a/schema-registry-samples/spring-schema-registry-kafka-standalone/pom.xml +++ b/schema-registry-samples/spring-schema-registry-kafka-standalone/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.8.RELEASE + 2.4.4 com.example @@ -15,7 +15,7 @@ Demo project for Spring Boot 8 - Hoxton.SR9 + 2020.0.2 diff --git a/source-samples/dynamic-destination-source-kafka/pom.xml b/source-samples/dynamic-destination-source-kafka/pom.xml index df501df..c68b46e 100644 --- a/source-samples/dynamic-destination-source-kafka/pom.xml +++ b/source-samples/dynamic-destination-source-kafka/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -58,6 +58,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/source-samples/dynamic-destination-source-rabbit/pom.xml b/source-samples/dynamic-destination-source-rabbit/pom.xml index e331f95..d973804 100644 --- a/source-samples/dynamic-destination-source-rabbit/pom.xml +++ b/source-samples/dynamic-destination-source-rabbit/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -53,6 +53,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/streambridge-samples/stream-bridge-avro/pom.xml b/streambridge-samples/stream-bridge-avro/pom.xml index fa408ad..f1edbda 100644 --- a/streambridge-samples/stream-bridge-avro/pom.xml +++ b/streambridge-samples/stream-bridge-avro/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 com.example @@ -16,7 +16,7 @@ 1.8 - Hoxton.SR8 + 2020.0.2 5.2.0 1.8.2 diff --git a/streambridge-samples/stream-bridge-avro/src/test/java/com/example/stream/bridge/avro/StreamBridgeAvroApplicationTests.java b/streambridge-samples/stream-bridge-avro/src/test/java/com/example/stream/bridge/avro/StreamBridgeAvroApplicationTests.java deleted file mode 100644 index f0f74a1..0000000 --- a/streambridge-samples/stream-bridge-avro/src/test/java/com/example/stream/bridge/avro/StreamBridgeAvroApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.example.stream.bridge.avro; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class StreamBridgeAvroApplicationTests { - - @Test - void contextLoads() { - } - -} diff --git a/testing-samples/test-embedded-kafka/pom.xml b/testing-samples/test-embedded-kafka/pom.xml index 56f7630..f25c7ba 100644 --- a/testing-samples/test-embedded-kafka/pom.xml +++ b/testing-samples/test-embedded-kafka/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -59,6 +59,11 @@ org.springframework.boot spring-boot-starter-web + + org.junit.vintage + junit-vintage-engine + test + diff --git a/testing-samples/testing-demo/pom.xml b/testing-samples/testing-demo/pom.xml index b4b3e25..fc39398 100644 --- a/testing-samples/testing-demo/pom.xml +++ b/testing-samples/testing-demo/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 @@ -75,6 +75,11 @@ spring-kafka-test test + + org.junit.vintage + junit-vintage-engine + test + diff --git a/transaction-kafka-samples/transaction-http-source/pom.xml b/transaction-kafka-samples/transaction-http-source/pom.xml index 0f70c71..d884ffd 100644 --- a/transaction-kafka-samples/transaction-http-source/pom.xml +++ b/transaction-kafka-samples/transaction-http-source/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/transaction-kafka-samples/transaction-logger-sink/pom.xml b/transaction-kafka-samples/transaction-logger-sink/pom.xml index 8a7b136..1fa3dc2 100644 --- a/transaction-kafka-samples/transaction-logger-sink/pom.xml +++ b/transaction-kafka-samples/transaction-logger-sink/pom.xml @@ -11,12 +11,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2 diff --git a/transaction-kafka-samples/transaction-spring-data-processor/pom.xml b/transaction-kafka-samples/transaction-spring-data-processor/pom.xml index 074b790..e01d751 100644 --- a/transaction-kafka-samples/transaction-spring-data-processor/pom.xml +++ b/transaction-kafka-samples/transaction-spring-data-processor/pom.xml @@ -12,12 +12,12 @@ org.springframework.boot spring-boot-starter-parent - 2.3.4.RELEASE + 2.4.4 - Hoxton.BUILD-SNAPSHOT + 2020.0.2