This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 9c9c6ec6b6e4439d3b593359be808c7e0534dd86 Author: Peter Palaga <[email protected]> AuthorDate: Thu Mar 25 08:40:45 2021 +0100 Remove camel-quarkus-main dependencies from tests etc. #2358 --- catalog/pom.xml | 13 ------------ .../caffeine-lrucache/deployment/pom.xml | 4 ++++ extensions-core/caffeine-lrucache/runtime/pom.xml | 5 +++++ extensions-jvm/hbase/integration-test/pom.xml | 17 --------------- extensions-jvm/spark/integration-test/pom.xml | 17 --------------- integration-tests-aws2/aws2-cw/pom.xml | 17 --------------- integration-tests-aws2/aws2-ddb/pom.xml | 17 --------------- integration-tests-aws2/aws2-kinesis/pom.xml | 17 --------------- integration-tests-aws2/aws2-lambda/pom.xml | 17 --------------- integration-tests-aws2/aws2-s3/pom.xml | 17 --------------- integration-tests-aws2/aws2-ses/pom.xml | 17 --------------- integration-tests-aws2/aws2-sqs-sns/pom.xml | 17 --------------- .../custom-main-listener/deployment/pom.xml | 2 +- .../custom-main-listener/runtime/pom.xml | 2 +- .../custom-routes-collector/deployment/pom.xml | 2 +- .../custom-routes-collector/runtime/pom.xml | 2 +- integration-tests/activemq/pom.xml | 17 --------------- integration-tests/aws2-grouped/pom.xml | 18 ---------------- integration-tests/aws2/pom.xml | 24 ---------------------- integration-tests/azure-eventhubs/pom.xml | 17 --------------- integration-tests/bean-validator/pom.xml | 17 --------------- integration-tests/box/pom.xml | 17 --------------- integration-tests/braintree/pom.xml | 17 --------------- integration-tests/csimple/pom.xml | 17 --------------- integration-tests/dataformats-json/pom.xml | 17 --------------- integration-tests/elasticsearch-rest/pom.xml | 17 --------------- integration-tests/fhir/pom.xml | 17 --------------- integration-tests/google-pubsub/pom.xml | 17 --------------- integration-tests/google/pom.xml | 17 --------------- integration-tests/infinispan/pom.xml | 17 --------------- integration-tests/influxdb/pom.xml | 17 --------------- integration-tests/ipfs/pom.xml | 17 --------------- integration-tests/jira/pom.xml | 17 --------------- integration-tests/kafka/pom.xml | 17 --------------- integration-tests/kamelet/pom.xml | 17 --------------- integration-tests/lra/pom.xml | 17 --------------- integration-tests/main-caffeine-lrucache/pom.xml | 17 --------------- integration-tests/main-collector/pom.xml | 17 --------------- integration-tests/main-command-mode/pom.xml | 17 --------------- integration-tests/main-devmode/pom.xml | 17 --------------- integration-tests/main-discovery-disabled/pom.xml | 17 --------------- integration-tests/main-xml-io/pom.xml | 17 --------------- integration-tests/main-xml-jaxb/pom.xml | 17 --------------- integration-tests/main/pom.xml | 17 --------------- integration-tests/messaging/pom.xml | 17 --------------- integration-tests/micrometer/pom.xml | 17 --------------- integration-tests/microprofile/pom.xml | 17 --------------- integration-tests/openapi-java/pom.xml | 17 --------------- integration-tests/opentracing/pom.xml | 17 --------------- integration-tests/rabbitmq/pom.xml | 17 --------------- integration-tests/reactive-streams/pom.xml | 17 --------------- integration-tests/rest/pom.xml | 17 --------------- integration-tests/salesforce/pom.xml | 17 --------------- integration-tests/servicenow/pom.xml | 17 --------------- integration-tests/slack/pom.xml | 17 --------------- integration-tests/telegram/pom.xml | 17 --------------- integration-tests/twilio/pom.xml | 17 --------------- integration-tests/twitter/pom.xml | 17 --------------- integration-tests/vertx-kafka/pom.xml | 17 --------------- integration-tests/zendesk/pom.xml | 17 --------------- 60 files changed, 13 insertions(+), 926 deletions(-) diff --git a/catalog/pom.xml b/catalog/pom.xml index 65104f7..d5793ba 100644 --- a/catalog/pom.xml +++ b/catalog/pom.xml @@ -2376,19 +2376,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-management</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/extensions-core/caffeine-lrucache/deployment/pom.xml b/extensions-core/caffeine-lrucache/deployment/pom.xml index 58dadf3..85d8e16 100644 --- a/extensions-core/caffeine-lrucache/deployment/pom.xml +++ b/extensions-core/caffeine-lrucache/deployment/pom.xml @@ -38,6 +38,10 @@ <groupId>io.quarkus</groupId> <artifactId>quarkus-caffeine-deployment</artifactId> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core-deployment</artifactId> + </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> diff --git a/extensions-core/caffeine-lrucache/runtime/pom.xml b/extensions-core/caffeine-lrucache/runtime/pom.xml index a37a625..8e5b0d0 100644 --- a/extensions-core/caffeine-lrucache/runtime/pom.xml +++ b/extensions-core/caffeine-lrucache/runtime/pom.xml @@ -44,6 +44,11 @@ <groupId>io.quarkus</groupId> <artifactId>quarkus-caffeine</artifactId> </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core</artifactId> + </dependency> + <dependency> <groupId>org.apache.camel</groupId> diff --git a/extensions-jvm/hbase/integration-test/pom.xml b/extensions-jvm/hbase/integration-test/pom.xml index 523b678..a585718 100644 --- a/extensions-jvm/hbase/integration-test/pom.xml +++ b/extensions-jvm/hbase/integration-test/pom.xml @@ -66,10 +66,6 @@ <artifactId>camel-quarkus-hbase</artifactId> </dependency> <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy</artifactId> </dependency> @@ -114,19 +110,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/extensions-jvm/spark/integration-test/pom.xml b/extensions-jvm/spark/integration-test/pom.xml index 72e4452..0c831b7 100644 --- a/extensions-jvm/spark/integration-test/pom.xml +++ b/extensions-jvm/spark/integration-test/pom.xml @@ -55,10 +55,6 @@ <artifactId>camel-quarkus-spark</artifactId> </dependency> <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy</artifactId> </dependency> @@ -78,19 +74,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-spark-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests-aws2/aws2-cw/pom.xml b/integration-tests-aws2/aws2-cw/pom.xml index 0d9e9e2..afe0c07 100644 --- a/integration-tests-aws2/aws2-cw/pom.xml +++ b/integration-tests-aws2/aws2-cw/pom.xml @@ -47,10 +47,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-cw</artifactId> </dependency> <dependency> @@ -98,19 +94,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-ddb/pom.xml b/integration-tests-aws2/aws2-ddb/pom.xml index 4f991e1..7224090 100644 --- a/integration-tests-aws2/aws2-ddb/pom.xml +++ b/integration-tests-aws2/aws2-ddb/pom.xml @@ -45,10 +45,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-ddb</artifactId> </dependency> <dependency> @@ -96,19 +92,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-kinesis/pom.xml b/integration-tests-aws2/aws2-kinesis/pom.xml index baab35f..11fd6fc 100644 --- a/integration-tests-aws2/aws2-kinesis/pom.xml +++ b/integration-tests-aws2/aws2-kinesis/pom.xml @@ -45,10 +45,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-kinesis</artifactId> </dependency> <dependency> @@ -106,19 +102,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-lambda/pom.xml b/integration-tests-aws2/aws2-lambda/pom.xml index 7a9669a..6877971 100644 --- a/integration-tests-aws2/aws2-lambda/pom.xml +++ b/integration-tests-aws2/aws2-lambda/pom.xml @@ -47,10 +47,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-lambda</artifactId> </dependency> <dependency> @@ -103,19 +99,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-s3/pom.xml b/integration-tests-aws2/aws2-s3/pom.xml index 30aad8c..8046b8b 100644 --- a/integration-tests-aws2/aws2-s3/pom.xml +++ b/integration-tests-aws2/aws2-s3/pom.xml @@ -44,10 +44,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-s3</artifactId> </dependency> <dependency> @@ -90,19 +86,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-ses/pom.xml b/integration-tests-aws2/aws2-ses/pom.xml index 48b09b5..bc0a1cd 100644 --- a/integration-tests-aws2/aws2-ses/pom.xml +++ b/integration-tests-aws2/aws2-ses/pom.xml @@ -46,10 +46,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-ses</artifactId> </dependency> <dependency> @@ -98,19 +94,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests-aws2/aws2-sqs-sns/pom.xml b/integration-tests-aws2/aws2-sqs-sns/pom.xml index d4cd5ae..109a25e 100644 --- a/integration-tests-aws2/aws2-sqs-sns/pom.xml +++ b/integration-tests-aws2/aws2-sqs-sns/pom.xml @@ -45,10 +45,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-sns</artifactId> </dependency> <dependency> @@ -102,19 +98,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-sqs-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests-support/custom-main-listener/deployment/pom.xml b/integration-tests-support/custom-main-listener/deployment/pom.xml index ff96500..816a89d 100644 --- a/integration-tests-support/custom-main-listener/deployment/pom.xml +++ b/integration-tests-support/custom-main-listener/deployment/pom.xml @@ -45,7 +45,7 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> + <artifactId>camel-quarkus-core-deployment</artifactId> </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> diff --git a/integration-tests-support/custom-main-listener/runtime/pom.xml b/integration-tests-support/custom-main-listener/runtime/pom.xml index 88973ff..83eef5b 100644 --- a/integration-tests-support/custom-main-listener/runtime/pom.xml +++ b/integration-tests-support/custom-main-listener/runtime/pom.xml @@ -45,7 +45,7 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> + <artifactId>camel-quarkus-core</artifactId> </dependency> </dependencies> diff --git a/integration-tests-support/custom-routes-collector/deployment/pom.xml b/integration-tests-support/custom-routes-collector/deployment/pom.xml index c5179e4..40720f6 100644 --- a/integration-tests-support/custom-routes-collector/deployment/pom.xml +++ b/integration-tests-support/custom-routes-collector/deployment/pom.xml @@ -45,7 +45,7 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> + <artifactId>camel-quarkus-core-deployment</artifactId> </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> diff --git a/integration-tests-support/custom-routes-collector/runtime/pom.xml b/integration-tests-support/custom-routes-collector/runtime/pom.xml index 1ffb62b..648cfdf 100644 --- a/integration-tests-support/custom-routes-collector/runtime/pom.xml +++ b/integration-tests-support/custom-routes-collector/runtime/pom.xml @@ -45,7 +45,7 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> + <artifactId>camel-quarkus-core</artifactId> </dependency> </dependencies> diff --git a/integration-tests/activemq/pom.xml b/integration-tests/activemq/pom.xml index 9b629a6..ddc0278 100644 --- a/integration-tests/activemq/pom.xml +++ b/integration-tests/activemq/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-activemq</artifactId> </dependency> <dependency> @@ -74,19 +70,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/aws2-grouped/pom.xml b/integration-tests/aws2-grouped/pom.xml index f5ed8de..b34f049 100644 --- a/integration-tests/aws2-grouped/pom.xml +++ b/integration-tests/aws2-grouped/pom.xml @@ -88,10 +88,6 @@ <artifactId>camel-quarkus-aws2-sqs</artifactId> </dependency> <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> @@ -227,20 +223,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - </dependencies> <build> diff --git a/integration-tests/aws2/pom.xml b/integration-tests/aws2/pom.xml index dfee6d6..cab00a2 100644 --- a/integration-tests/aws2/pom.xml +++ b/integration-tests/aws2/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-athena</artifactId> </dependency> <dependency> @@ -303,26 +299,6 @@ </exclusion> </exclusions> </dependency> - <!-- - <dependency> - <groupId>io.rest-assured</groupId> - <artifactId>rest-assured</artifactId> - <scope>test</scope> - </dependency> - --> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer-deployment</artifactId> diff --git a/integration-tests/azure-eventhubs/pom.xml b/integration-tests/azure-eventhubs/pom.xml index b2baee0..d1f4911 100644 --- a/integration-tests/azure-eventhubs/pom.xml +++ b/integration-tests/azure-eventhubs/pom.xml @@ -56,10 +56,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-mock</artifactId> </dependency> <dependency> @@ -108,19 +104,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-mock-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/bean-validator/pom.xml b/integration-tests/bean-validator/pom.xml index 4f092ba..2577d7f 100644 --- a/integration-tests/bean-validator/pom.xml +++ b/integration-tests/bean-validator/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-bean-validator</artifactId> </dependency> <dependency> @@ -86,19 +82,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/box/pom.xml b/integration-tests/box/pom.xml index 01c4734..b5fb7f2 100644 --- a/integration-tests/box/pom.xml +++ b/integration-tests/box/pom.xml @@ -35,10 +35,6 @@ <artifactId>camel-quarkus-box</artifactId> </dependency> <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy</artifactId> </dependency> @@ -92,19 +88,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/braintree/pom.xml b/integration-tests/braintree/pom.xml index 2ec1c16..04a8552 100644 --- a/integration-tests/braintree/pom.xml +++ b/integration-tests/braintree/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-braintree</artifactId> </dependency> <dependency> @@ -73,19 +69,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/csimple/pom.xml b/integration-tests/csimple/pom.xml index bd6c25d..6f77ee8 100644 --- a/integration-tests/csimple/pom.xml +++ b/integration-tests/csimple/pom.xml @@ -57,10 +57,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-io-dsl</artifactId> </dependency> @@ -105,19 +101,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-io-dsl-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/dataformats-json/pom.xml b/integration-tests/dataformats-json/pom.xml index c799d65..0601a94 100644 --- a/integration-tests/dataformats-json/pom.xml +++ b/integration-tests/dataformats-json/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-io-dsl</artifactId> </dependency> <dependency> @@ -194,19 +190,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-vm-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/elasticsearch-rest/pom.xml b/integration-tests/elasticsearch-rest/pom.xml index f686881..236d797 100644 --- a/integration-tests/elasticsearch-rest/pom.xml +++ b/integration-tests/elasticsearch-rest/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-elasticsearch-rest</artifactId> </dependency> <dependency> @@ -74,19 +70,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/fhir/pom.xml b/integration-tests/fhir/pom.xml index fc3e63e..3519715 100644 --- a/integration-tests/fhir/pom.xml +++ b/integration-tests/fhir/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-fhir</artifactId> </dependency> <dependency> @@ -91,19 +87,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <build> diff --git a/integration-tests/google-pubsub/pom.xml b/integration-tests/google-pubsub/pom.xml index 8140d25..5f16f6b 100644 --- a/integration-tests/google-pubsub/pom.xml +++ b/integration-tests/google-pubsub/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-google-pubsub</artifactId> </dependency> <dependency> @@ -74,19 +70,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests/google/pom.xml b/integration-tests/google/pom.xml index 657adb1..2fa740e 100644 --- a/integration-tests/google/pom.xml +++ b/integration-tests/google/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-google-calendar</artifactId> </dependency> <dependency> @@ -131,19 +127,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/infinispan/pom.xml b/integration-tests/infinispan/pom.xml index 450a84e..78e2079 100644 --- a/integration-tests/infinispan/pom.xml +++ b/integration-tests/infinispan/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-infinispan</artifactId> </dependency> <dependency> @@ -109,19 +105,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/influxdb/pom.xml b/integration-tests/influxdb/pom.xml index 1d8b382..6b627f7 100644 --- a/integration-tests/influxdb/pom.xml +++ b/integration-tests/influxdb/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-influxdb</artifactId> </dependency> <dependency> @@ -80,19 +76,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/ipfs/pom.xml b/integration-tests/ipfs/pom.xml index df81294..ff3fe0d 100644 --- a/integration-tests/ipfs/pom.xml +++ b/integration-tests/ipfs/pom.xml @@ -44,10 +44,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-ipfs</artifactId> </dependency> <dependency> @@ -86,19 +82,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests/jira/pom.xml b/integration-tests/jira/pom.xml index 1b7589b..ce1d9a7 100644 --- a/integration-tests/jira/pom.xml +++ b/integration-tests/jira/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-jira</artifactId> </dependency> <dependency> @@ -75,19 +71,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/kafka/pom.xml b/integration-tests/kafka/pom.xml index df749fe..d1de906 100644 --- a/integration-tests/kafka/pom.xml +++ b/integration-tests/kafka/pom.xml @@ -36,10 +36,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-kafka</artifactId> </dependency> <dependency> @@ -103,19 +99,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests/kamelet/pom.xml b/integration-tests/kamelet/pom.xml index bb69e6b..f82a4ea 100644 --- a/integration-tests/kamelet/pom.xml +++ b/integration-tests/kamelet/pom.xml @@ -53,10 +53,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer</artifactId> </dependency> <dependency> @@ -105,19 +101,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/lra/pom.xml b/integration-tests/lra/pom.xml index 677d365..84048ef 100644 --- a/integration-tests/lra/pom.xml +++ b/integration-tests/lra/pom.xml @@ -59,10 +59,6 @@ <artifactId>camel-quarkus-lra</artifactId> </dependency> <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy</artifactId> </dependency> @@ -142,19 +138,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> <profiles> diff --git a/integration-tests/main-caffeine-lrucache/pom.xml b/integration-tests/main-caffeine-lrucache/pom.xml index 1baa4a4..d677295 100644 --- a/integration-tests/main-caffeine-lrucache/pom.xml +++ b/integration-tests/main-caffeine-lrucache/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-caffeine-lrucache</artifactId> </dependency> @@ -75,19 +71,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/main-collector/pom.xml b/integration-tests/main-collector/pom.xml index 1c727d1..8ba2ad1 100644 --- a/integration-tests/main-collector/pom.xml +++ b/integration-tests/main-collector/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-integration-tests-support-custom-routes-collector</artifactId> </dependency> <dependency> @@ -106,19 +102,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/main-command-mode/pom.xml b/integration-tests/main-command-mode/pom.xml index 64a2420..36d10be 100644 --- a/integration-tests/main-command-mode/pom.xml +++ b/integration-tests/main-command-mode/pom.xml @@ -35,10 +35,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-log</artifactId> </dependency> <dependency> @@ -83,19 +79,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/main-devmode/pom.xml b/integration-tests/main-devmode/pom.xml index 6a5289b..c769670 100644 --- a/integration-tests/main-devmode/pom.xml +++ b/integration-tests/main-devmode/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-io-dsl</artifactId> </dependency> <dependency> @@ -123,19 +119,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-timer-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/main-discovery-disabled/pom.xml b/integration-tests/main-discovery-disabled/pom.xml index ead94eb..27a8842 100644 --- a/integration-tests/main-discovery-disabled/pom.xml +++ b/integration-tests/main-discovery-disabled/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-direct</artifactId> </dependency> <dependency> @@ -96,19 +92,6 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> </dependencies> diff --git a/integration-tests/main-xml-io/pom.xml b/integration-tests/main-xml-io/pom.xml index 946705e..85c7606 100644 --- a/integration-tests/main-xml-io/pom.xml +++ b/integration-tests/main-xml-io/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-io-dsl</artifactId> </dependency> <dependency> @@ -114,19 +110,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rest-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/main-xml-jaxb/pom.xml b/integration-tests/main-xml-jaxb/pom.xml index aa4b4b3..05893f1 100644 --- a/integration-tests/main-xml-jaxb/pom.xml +++ b/integration-tests/main-xml-jaxb/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-xml-jaxb</artifactId> </dependency> <dependency> @@ -114,19 +110,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rest-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/main/pom.xml b/integration-tests/main/pom.xml index e7a1033..b4865d8 100644 --- a/integration-tests/main/pom.xml +++ b/integration-tests/main/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-endpointdsl</artifactId> </dependency> <dependency> @@ -161,19 +157,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-reactive-executor-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/messaging/pom.xml b/integration-tests/messaging/pom.xml index 1ba29b1..a766c60 100644 --- a/integration-tests/messaging/pom.xml +++ b/integration-tests/messaging/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-jms</artifactId> </dependency> <dependency> @@ -117,19 +113,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-mock-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/micrometer/pom.xml b/integration-tests/micrometer/pom.xml index 8e5b422..cb8e349 100644 --- a/integration-tests/micrometer/pom.xml +++ b/integration-tests/micrometer/pom.xml @@ -45,10 +45,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-direct</artifactId> </dependency> <dependency> @@ -117,19 +113,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-micrometer-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/microprofile/pom.xml b/integration-tests/microprofile/pom.xml index fa85511..1f0a24f 100644 --- a/integration-tests/microprofile/pom.xml +++ b/integration-tests/microprofile/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-microprofile-fault-tolerance</artifactId> </dependency> <dependency> @@ -100,19 +96,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-microprofile-fault-tolerance-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/openapi-java/pom.xml b/integration-tests/openapi-java/pom.xml index 0f3592e..d8e49a7 100644 --- a/integration-tests/openapi-java/pom.xml +++ b/integration-tests/openapi-java/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-direct</artifactId> </dependency> <dependency> @@ -100,19 +96,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-openapi-java-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/opentracing/pom.xml b/integration-tests/opentracing/pom.xml index b17bf80..3f41917 100644 --- a/integration-tests/opentracing/pom.xml +++ b/integration-tests/opentracing/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-opentracing</artifactId> </dependency> <dependency> @@ -70,19 +66,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-opentracing-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/rabbitmq/pom.xml b/integration-tests/rabbitmq/pom.xml index 898fe10..d877019 100644 --- a/integration-tests/rabbitmq/pom.xml +++ b/integration-tests/rabbitmq/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rabbitmq</artifactId> </dependency> <dependency> @@ -63,19 +59,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rabbitmq-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/reactive-streams/pom.xml b/integration-tests/reactive-streams/pom.xml index 45b6fd6..96201b0 100644 --- a/integration-tests/reactive-streams/pom.xml +++ b/integration-tests/reactive-streams/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-reactive-streams</artifactId> </dependency> <dependency> @@ -80,19 +76,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-reactive-streams-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/rest/pom.xml b/integration-tests/rest/pom.xml index d8668d9..6a60b2e 100644 --- a/integration-tests/rest/pom.xml +++ b/integration-tests/rest/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rest</artifactId> </dependency> <dependency> @@ -58,19 +54,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rest-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/salesforce/pom.xml b/integration-tests/salesforce/pom.xml index 0a627b7..56411d3 100644 --- a/integration-tests/salesforce/pom.xml +++ b/integration-tests/salesforce/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-salesforce</artifactId> </dependency> <dependency> @@ -63,19 +59,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-salesforce-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/servicenow/pom.xml b/integration-tests/servicenow/pom.xml index fa67353..66329f4 100644 --- a/integration-tests/servicenow/pom.xml +++ b/integration-tests/servicenow/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-servicenow</artifactId> </dependency> <dependency> @@ -63,19 +59,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-servicenow-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/slack/pom.xml b/integration-tests/slack/pom.xml index 968e709..55bd0d9 100644 --- a/integration-tests/slack/pom.xml +++ b/integration-tests/slack/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-netty-http</artifactId> </dependency> <dependency> @@ -70,19 +66,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-netty-http-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/telegram/pom.xml b/integration-tests/telegram/pom.xml index 59deac4..e741dc9 100644 --- a/integration-tests/telegram/pom.xml +++ b/integration-tests/telegram/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-telegram</artifactId> </dependency> <dependency> @@ -106,19 +102,6 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-platform-http-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/twilio/pom.xml b/integration-tests/twilio/pom.xml index d2273b6..bb5b792 100644 --- a/integration-tests/twilio/pom.xml +++ b/integration-tests/twilio/pom.xml @@ -44,10 +44,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-twilio</artifactId> </dependency> <dependency> @@ -75,19 +71,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-twilio-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/twitter/pom.xml b/integration-tests/twitter/pom.xml index fafd2be..ac7ef23 100644 --- a/integration-tests/twitter/pom.xml +++ b/integration-tests/twitter/pom.xml @@ -32,10 +32,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-twitter</artifactId> </dependency> <dependency> @@ -69,19 +65,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-twitter-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/vertx-kafka/pom.xml b/integration-tests/vertx-kafka/pom.xml index eaca2c9..626f895 100644 --- a/integration-tests/vertx-kafka/pom.xml +++ b/integration-tests/vertx-kafka/pom.xml @@ -45,10 +45,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-vertx-kafka</artifactId> </dependency> <dependency> @@ -81,19 +77,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-vertx-kafka-deployment</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/integration-tests/zendesk/pom.xml b/integration-tests/zendesk/pom.xml index bd63063..95833a1 100644 --- a/integration-tests/zendesk/pom.xml +++ b/integration-tests/zendesk/pom.xml @@ -44,10 +44,6 @@ <dependencies> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-zendesk</artifactId> </dependency> <dependency> @@ -75,19 +71,6 @@ <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> - <artifactId>camel-quarkus-main-deployment</artifactId> - <version>${project.version}</version> - <type>pom</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-zendesk-deployment</artifactId> <version>${project.version}</version> <type>pom</type>
