This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 5c78622d3acc907d55ba13e6e187d74ab2669edb Author: James Netherton <[email protected]> AuthorDate: Mon Feb 7 10:43:19 2022 +0000 Add capability to skip testcontainers tests --- extensions/kafka/deployment/pom.xml | 21 +++++++++++++++++++++ .../aws2-quarkus-client/aws2-ddb/pom.xml | 11 +++++++++++ .../aws2-quarkus-client/aws2-s3/pom.xml | 11 +++++++++++ .../aws2-quarkus-client/aws2-ses/pom.xml | 11 +++++++++++ .../aws2-quarkus-client/aws2-sqs-sns/pom.xml | 11 +++++++++++ .../aws2-quarkus-client/aws2-sqs/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-cw/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-ddb/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-kinesis/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-lambda/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-s3/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-ses/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-sqs-sns/pom.xml | 11 +++++++++++ integration-test-groups/aws2/aws2-sqs/pom.xml | 11 +++++++++++ .../azure/azure-eventhubs/pom.xml | 11 +++++++++++ .../azure/azure-storage-blob/pom.xml | 11 +++++++++++ .../azure/azure-storage-queue/pom.xml | 11 +++++++++++ .../mongodb/mongodb-gridfs/pom.xml | 11 +++++++++++ integration-test-groups/mongodb/mongodb/pom.xml | 11 +++++++++++ integration-tests-jvm/couchbase/pom.xml | 11 +++++++++++ integration-tests-jvm/hbase/pom.xml | 11 +++++++++++ integration-tests-jvm/redis/pom.xml | 11 +++++++++++ integration-tests/activemq/pom.xml | 11 +++++++++++ integration-tests/amqp/pom.xml | 11 +++++++++++ integration-tests/arangodb/pom.xml | 11 +++++++++++ integration-tests/aws2-grouped/pom.xml | 11 +++++++++++ .../aws2-quarkus-client-grouped/pom.xml | 11 +++++++++++ integration-tests/aws2/pom.xml | 11 +++++++++++ integration-tests/azure-grouped/pom.xml | 11 +++++++++++ integration-tests/cassandraql/pom.xml | 11 +++++++++++ integration-tests/consul/pom.xml | 11 +++++++++++ integration-tests/couchdb/pom.xml | 11 +++++++++++ integration-tests/debezium/pom.xml | 11 +++++++++++ integration-tests/elasticsearch-rest/pom.xml | 11 +++++++++++ integration-tests/fhir/pom.xml | 11 +++++++++++ integration-tests/google-pubsub/pom.xml | 11 +++++++++++ integration-tests/google-storage/pom.xml | 11 +++++++++++ integration-tests/http/pom.xml | 11 +++++++++++ integration-tests/infinispan/pom.xml | 11 +++++++++++ integration-tests/influxdb/pom.xml | 11 +++++++++++ integration-tests/ipfs/pom.xml | 11 +++++++++++ integration-tests/jms-artemis-client/pom.xml | 11 +++++++++++ integration-tests/jms-qpid-amqp-client/pom.xml | 11 +++++++++++ integration-tests/jsch/pom.xml | 11 +++++++++++ integration-tests/jta/pom.xml | 11 +++++++++++ integration-tests/kafka-oauth/pom.xml | 11 +++++++++++ integration-tests/kafka-sasl-ssl/pom.xml | 11 +++++++++++ integration-tests/kafka-sasl/pom.xml | 11 +++++++++++ integration-tests/kafka-ssl/pom.xml | 11 +++++++++++ integration-tests/kafka/pom.xml | 11 +++++++++++ integration-tests/kudu/pom.xml | 11 +++++++++++ integration-tests/lra/pom.xml | 11 +++++++++++ integration-tests/minio/pom.xml | 11 +++++++++++ integration-tests/mongodb-grouped/pom.xml | 11 +++++++++++ integration-tests/nats/pom.xml | 11 +++++++++++ integration-tests/nsq/pom.xml | 11 +++++++++++ integration-tests/paho-mqtt5/pom.xml | 11 +++++++++++ integration-tests/paho/pom.xml | 11 +++++++++++ integration-tests/pg-replication-slot/pom.xml | 11 +++++++++++ integration-tests/pgevent/pom.xml | 11 +++++++++++ integration-tests/rabbitmq/pom.xml | 11 +++++++++++ integration-tests/sjms-artemis-client/pom.xml | 11 +++++++++++ integration-tests/sjms-qpid-amqp-client/pom.xml | 11 +++++++++++ integration-tests/sjms2-artemis-client/pom.xml | 11 +++++++++++ integration-tests/sjms2-qpid-amqp-client/pom.xml | 11 +++++++++++ integration-tests/solr/pom.xml | 12 +++++++++++- integration-tests/splunk/pom.xml | 11 +++++++++++ integration-tests/spring-rabbitmq/pom.xml | 11 +++++++++++ integration-tests/ssh/pom.xml | 11 +++++++++++ 69 files changed, 769 insertions(+), 1 deletion(-) diff --git a/extensions/kafka/deployment/pom.xml b/extensions/kafka/deployment/pom.xml index 95d7374..33923af 100644 --- a/extensions/kafka/deployment/pom.xml +++ b/extensions/kafka/deployment/pom.xml @@ -68,4 +68,25 @@ </plugins> </build> + <profiles> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes>**/KafkaDevServicesEnabledTest.java</excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> diff --git a/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml index 240b625..f40e4ce 100644 --- a/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml +++ b/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml @@ -179,6 +179,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml index e20f5ad..a16732f 100644 --- a/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml +++ b/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml @@ -196,6 +196,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml index 9809513..1e765ca 100644 --- a/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml +++ b/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml @@ -184,6 +184,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml index 147eca4..d02f4eb 100644 --- a/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml +++ b/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml @@ -200,6 +200,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2-quarkus-client/aws2-sqs/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-sqs/pom.xml index 378418e..226a50e 100644 --- a/integration-test-groups/aws2-quarkus-client/aws2-sqs/pom.xml +++ b/integration-test-groups/aws2-quarkus-client/aws2-sqs/pom.xml @@ -184,6 +184,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-cw/pom.xml b/integration-test-groups/aws2/aws2-cw/pom.xml index 7398723..bb0af9d 100644 --- a/integration-test-groups/aws2/aws2-cw/pom.xml +++ b/integration-test-groups/aws2/aws2-cw/pom.xml @@ -119,6 +119,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-ddb/pom.xml b/integration-test-groups/aws2/aws2-ddb/pom.xml index 8404e13..59e8f36 100644 --- a/integration-test-groups/aws2/aws2-ddb/pom.xml +++ b/integration-test-groups/aws2/aws2-ddb/pom.xml @@ -119,6 +119,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-kinesis/pom.xml b/integration-test-groups/aws2/aws2-kinesis/pom.xml index f77add5..af69e30 100644 --- a/integration-test-groups/aws2/aws2-kinesis/pom.xml +++ b/integration-test-groups/aws2/aws2-kinesis/pom.xml @@ -141,6 +141,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-lambda/pom.xml b/integration-test-groups/aws2/aws2-lambda/pom.xml index 9df4ed1..ace4e42 100644 --- a/integration-test-groups/aws2/aws2-lambda/pom.xml +++ b/integration-test-groups/aws2/aws2-lambda/pom.xml @@ -141,6 +141,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-s3/pom.xml b/integration-test-groups/aws2/aws2-s3/pom.xml index 3afd7ef..1e20023 100644 --- a/integration-test-groups/aws2/aws2-s3/pom.xml +++ b/integration-test-groups/aws2/aws2-s3/pom.xml @@ -191,6 +191,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-ses/pom.xml b/integration-test-groups/aws2/aws2-ses/pom.xml index c5a0375..c1fe7f7 100644 --- a/integration-test-groups/aws2/aws2-ses/pom.xml +++ b/integration-test-groups/aws2/aws2-ses/pom.xml @@ -120,6 +120,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-sqs-sns/pom.xml b/integration-test-groups/aws2/aws2-sqs-sns/pom.xml index e17b00c..6b4af52 100644 --- a/integration-test-groups/aws2/aws2-sqs-sns/pom.xml +++ b/integration-test-groups/aws2/aws2-sqs-sns/pom.xml @@ -131,6 +131,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/aws2/aws2-sqs/pom.xml b/integration-test-groups/aws2/aws2-sqs/pom.xml index 2d968e1..06f6b41 100644 --- a/integration-test-groups/aws2/aws2-sqs/pom.xml +++ b/integration-test-groups/aws2/aws2-sqs/pom.xml @@ -119,6 +119,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> \ No newline at end of file diff --git a/integration-test-groups/azure/azure-eventhubs/pom.xml b/integration-test-groups/azure/azure-eventhubs/pom.xml index 0d98c4f..d382e49 100644 --- a/integration-test-groups/azure/azure-eventhubs/pom.xml +++ b/integration-test-groups/azure/azure-eventhubs/pom.xml @@ -135,6 +135,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/azure/azure-storage-blob/pom.xml b/integration-test-groups/azure/azure-storage-blob/pom.xml index ac704fe..7da0161 100644 --- a/integration-test-groups/azure/azure-storage-blob/pom.xml +++ b/integration-test-groups/azure/azure-storage-blob/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/azure/azure-storage-queue/pom.xml b/integration-test-groups/azure/azure-storage-queue/pom.xml index 4ed2551..d39d78a 100644 --- a/integration-test-groups/azure/azure-storage-queue/pom.xml +++ b/integration-test-groups/azure/azure-storage-queue/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/mongodb/mongodb-gridfs/pom.xml b/integration-test-groups/mongodb/mongodb-gridfs/pom.xml index 0e19940..6c95842 100644 --- a/integration-test-groups/mongodb/mongodb-gridfs/pom.xml +++ b/integration-test-groups/mongodb/mongodb-gridfs/pom.xml @@ -119,6 +119,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-test-groups/mongodb/mongodb/pom.xml b/integration-test-groups/mongodb/mongodb/pom.xml index 3c79c55..46d3b2f 100644 --- a/integration-test-groups/mongodb/mongodb/pom.xml +++ b/integration-test-groups/mongodb/mongodb/pom.xml @@ -119,6 +119,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests-jvm/couchbase/pom.xml b/integration-tests-jvm/couchbase/pom.xml index 16c0380..58f384b 100644 --- a/integration-tests-jvm/couchbase/pom.xml +++ b/integration-tests-jvm/couchbase/pom.xml @@ -88,6 +88,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests-jvm/hbase/pom.xml b/integration-tests-jvm/hbase/pom.xml index b41cd3d..377741f 100644 --- a/integration-tests-jvm/hbase/pom.xml +++ b/integration-tests-jvm/hbase/pom.xml @@ -115,6 +115,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests-jvm/redis/pom.xml b/integration-tests-jvm/redis/pom.xml index bd31f2e..2eb7329 100644 --- a/integration-tests-jvm/redis/pom.xml +++ b/integration-tests-jvm/redis/pom.xml @@ -126,5 +126,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/activemq/pom.xml b/integration-tests/activemq/pom.xml index 640f43b..f091cb4 100644 --- a/integration-tests/activemq/pom.xml +++ b/integration-tests/activemq/pom.xml @@ -127,6 +127,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/amqp/pom.xml b/integration-tests/amqp/pom.xml index 9e988fb..3170802 100644 --- a/integration-tests/amqp/pom.xml +++ b/integration-tests/amqp/pom.xml @@ -127,6 +127,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/arangodb/pom.xml b/integration-tests/arangodb/pom.xml index 3e8f8bc..848f3d8 100644 --- a/integration-tests/arangodb/pom.xml +++ b/integration-tests/arangodb/pom.xml @@ -111,6 +111,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/aws2-grouped/pom.xml b/integration-tests/aws2-grouped/pom.xml index 3b79b65..691540a 100644 --- a/integration-tests/aws2-grouped/pom.xml +++ b/integration-tests/aws2-grouped/pom.xml @@ -339,6 +339,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/aws2-quarkus-client-grouped/pom.xml b/integration-tests/aws2-quarkus-client-grouped/pom.xml index e57715c..18ec86f 100644 --- a/integration-tests/aws2-quarkus-client-grouped/pom.xml +++ b/integration-tests/aws2-quarkus-client-grouped/pom.xml @@ -359,6 +359,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/aws2/pom.xml b/integration-tests/aws2/pom.xml index ab0d089..45850e1 100644 --- a/integration-tests/aws2/pom.xml +++ b/integration-tests/aws2/pom.xml @@ -318,6 +318,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/azure-grouped/pom.xml b/integration-tests/azure-grouped/pom.xml index 5c85318..949d27d 100644 --- a/integration-tests/azure-grouped/pom.xml +++ b/integration-tests/azure-grouped/pom.xml @@ -229,6 +229,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/cassandraql/pom.xml b/integration-tests/cassandraql/pom.xml index b55dcab..d53e943 100644 --- a/integration-tests/cassandraql/pom.xml +++ b/integration-tests/cassandraql/pom.xml @@ -171,6 +171,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/consul/pom.xml b/integration-tests/consul/pom.xml index b8a80ad..f7c08e8 100644 --- a/integration-tests/consul/pom.xml +++ b/integration-tests/consul/pom.xml @@ -115,6 +115,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/couchdb/pom.xml b/integration-tests/couchdb/pom.xml index 60fcc45..a00e21b 100644 --- a/integration-tests/couchdb/pom.xml +++ b/integration-tests/couchdb/pom.xml @@ -120,6 +120,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/debezium/pom.xml b/integration-tests/debezium/pom.xml index b6a8816..80bb13b 100644 --- a/integration-tests/debezium/pom.xml +++ b/integration-tests/debezium/pom.xml @@ -218,6 +218,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/elasticsearch-rest/pom.xml b/integration-tests/elasticsearch-rest/pom.xml index 086b398..94547f7 100644 --- a/integration-tests/elasticsearch-rest/pom.xml +++ b/integration-tests/elasticsearch-rest/pom.xml @@ -133,5 +133,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/fhir/pom.xml b/integration-tests/fhir/pom.xml index 0a607e9..d41627d 100644 --- a/integration-tests/fhir/pom.xml +++ b/integration-tests/fhir/pom.xml @@ -146,6 +146,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/google-pubsub/pom.xml b/integration-tests/google-pubsub/pom.xml index 7e2c91e..58c0155 100644 --- a/integration-tests/google-pubsub/pom.xml +++ b/integration-tests/google-pubsub/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/google-storage/pom.xml b/integration-tests/google-storage/pom.xml index 112d264..383f1d0 100644 --- a/integration-tests/google-storage/pom.xml +++ b/integration-tests/google-storage/pom.xml @@ -135,6 +135,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/http/pom.xml b/integration-tests/http/pom.xml index 68daa40..0bb8a2a 100644 --- a/integration-tests/http/pom.xml +++ b/integration-tests/http/pom.xml @@ -218,6 +218,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/infinispan/pom.xml b/integration-tests/infinispan/pom.xml index ea04b9d..e5df665 100644 --- a/integration-tests/infinispan/pom.xml +++ b/integration-tests/infinispan/pom.xml @@ -149,6 +149,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/influxdb/pom.xml b/integration-tests/influxdb/pom.xml index be9a801..ea4fe7a 100644 --- a/integration-tests/influxdb/pom.xml +++ b/integration-tests/influxdb/pom.xml @@ -115,6 +115,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/ipfs/pom.xml b/integration-tests/ipfs/pom.xml index 95b7482..3e7a59d 100644 --- a/integration-tests/ipfs/pom.xml +++ b/integration-tests/ipfs/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/jms-artemis-client/pom.xml b/integration-tests/jms-artemis-client/pom.xml index 9877dff..49f4d1a 100644 --- a/integration-tests/jms-artemis-client/pom.xml +++ b/integration-tests/jms-artemis-client/pom.xml @@ -145,6 +145,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/jms-qpid-amqp-client/pom.xml b/integration-tests/jms-qpid-amqp-client/pom.xml index 3e63f76..b114e2c 100644 --- a/integration-tests/jms-qpid-amqp-client/pom.xml +++ b/integration-tests/jms-qpid-amqp-client/pom.xml @@ -144,6 +144,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/jsch/pom.xml b/integration-tests/jsch/pom.xml index 5ab783a..c66811a 100644 --- a/integration-tests/jsch/pom.xml +++ b/integration-tests/jsch/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/jta/pom.xml b/integration-tests/jta/pom.xml index 7bd0092..314b7d2 100644 --- a/integration-tests/jta/pom.xml +++ b/integration-tests/jta/pom.xml @@ -219,6 +219,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/kafka-oauth/pom.xml b/integration-tests/kafka-oauth/pom.xml index ce0f139..58ab39f 100644 --- a/integration-tests/kafka-oauth/pom.xml +++ b/integration-tests/kafka-oauth/pom.xml @@ -203,5 +203,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> \ No newline at end of file diff --git a/integration-tests/kafka-sasl-ssl/pom.xml b/integration-tests/kafka-sasl-ssl/pom.xml index d628f5f..c253797 100644 --- a/integration-tests/kafka-sasl-ssl/pom.xml +++ b/integration-tests/kafka-sasl-ssl/pom.xml @@ -130,6 +130,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/kafka-sasl/pom.xml b/integration-tests/kafka-sasl/pom.xml index fd6b429..e130db0 100644 --- a/integration-tests/kafka-sasl/pom.xml +++ b/integration-tests/kafka-sasl/pom.xml @@ -134,6 +134,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/kafka-ssl/pom.xml b/integration-tests/kafka-ssl/pom.xml index af398a7..ffde62f 100644 --- a/integration-tests/kafka-ssl/pom.xml +++ b/integration-tests/kafka-ssl/pom.xml @@ -134,6 +134,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/kafka/pom.xml b/integration-tests/kafka/pom.xml index d8ff0c8..e9e3e24 100644 --- a/integration-tests/kafka/pom.xml +++ b/integration-tests/kafka/pom.xml @@ -193,6 +193,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/kudu/pom.xml b/integration-tests/kudu/pom.xml index d4096f3..36f8e23 100644 --- a/integration-tests/kudu/pom.xml +++ b/integration-tests/kudu/pom.xml @@ -166,5 +166,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/lra/pom.xml b/integration-tests/lra/pom.xml index 69ae2e4..e0bf58b 100644 --- a/integration-tests/lra/pom.xml +++ b/integration-tests/lra/pom.xml @@ -171,6 +171,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/minio/pom.xml b/integration-tests/minio/pom.xml index 01232e6..eca8e36 100644 --- a/integration-tests/minio/pom.xml +++ b/integration-tests/minio/pom.xml @@ -115,6 +115,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/mongodb-grouped/pom.xml b/integration-tests/mongodb-grouped/pom.xml index db930b7..8080aa5 100644 --- a/integration-tests/mongodb-grouped/pom.xml +++ b/integration-tests/mongodb-grouped/pom.xml @@ -195,6 +195,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/nats/pom.xml b/integration-tests/nats/pom.xml index d6c31b1..81e707c 100644 --- a/integration-tests/nats/pom.xml +++ b/integration-tests/nats/pom.xml @@ -137,5 +137,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/nsq/pom.xml b/integration-tests/nsq/pom.xml index d89af05..6ab7b54 100644 --- a/integration-tests/nsq/pom.xml +++ b/integration-tests/nsq/pom.xml @@ -133,5 +133,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/paho-mqtt5/pom.xml b/integration-tests/paho-mqtt5/pom.xml index b669e60..6f0cf6c 100644 --- a/integration-tests/paho-mqtt5/pom.xml +++ b/integration-tests/paho-mqtt5/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/paho/pom.xml b/integration-tests/paho/pom.xml index c0c5fdc..d105172 100644 --- a/integration-tests/paho/pom.xml +++ b/integration-tests/paho/pom.xml @@ -110,6 +110,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/pg-replication-slot/pom.xml b/integration-tests/pg-replication-slot/pom.xml index 8781523..5dc8b64 100644 --- a/integration-tests/pg-replication-slot/pom.xml +++ b/integration-tests/pg-replication-slot/pom.xml @@ -120,5 +120,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/pgevent/pom.xml b/integration-tests/pgevent/pom.xml index 6bc4c93..6d8c03d 100644 --- a/integration-tests/pgevent/pom.xml +++ b/integration-tests/pgevent/pom.xml @@ -149,5 +149,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/rabbitmq/pom.xml b/integration-tests/rabbitmq/pom.xml index 4cc86d0..40f9e3f 100644 --- a/integration-tests/rabbitmq/pom.xml +++ b/integration-tests/rabbitmq/pom.xml @@ -111,5 +111,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/sjms-artemis-client/pom.xml b/integration-tests/sjms-artemis-client/pom.xml index e58ebcf..5a24099 100644 --- a/integration-tests/sjms-artemis-client/pom.xml +++ b/integration-tests/sjms-artemis-client/pom.xml @@ -144,6 +144,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/sjms-qpid-amqp-client/pom.xml b/integration-tests/sjms-qpid-amqp-client/pom.xml index b156c55..2a970e1 100644 --- a/integration-tests/sjms-qpid-amqp-client/pom.xml +++ b/integration-tests/sjms-qpid-amqp-client/pom.xml @@ -144,6 +144,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/sjms2-artemis-client/pom.xml b/integration-tests/sjms2-artemis-client/pom.xml index 46cf08c..4618971 100644 --- a/integration-tests/sjms2-artemis-client/pom.xml +++ b/integration-tests/sjms2-artemis-client/pom.xml @@ -144,6 +144,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/sjms2-qpid-amqp-client/pom.xml b/integration-tests/sjms2-qpid-amqp-client/pom.xml index ffa1327..b9630b1 100644 --- a/integration-tests/sjms2-qpid-amqp-client/pom.xml +++ b/integration-tests/sjms2-qpid-amqp-client/pom.xml @@ -144,6 +144,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/solr/pom.xml b/integration-tests/solr/pom.xml index 785731b..1463471 100644 --- a/integration-tests/solr/pom.xml +++ b/integration-tests/solr/pom.xml @@ -178,7 +178,17 @@ </dependency> </dependencies> </profile> - + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/splunk/pom.xml b/integration-tests/splunk/pom.xml index a1ad328..0a49540 100644 --- a/integration-tests/splunk/pom.xml +++ b/integration-tests/splunk/pom.xml @@ -131,6 +131,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/spring-rabbitmq/pom.xml b/integration-tests/spring-rabbitmq/pom.xml index 731fb2f..da088e7 100644 --- a/integration-tests/spring-rabbitmq/pom.xml +++ b/integration-tests/spring-rabbitmq/pom.xml @@ -133,6 +133,17 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project> diff --git a/integration-tests/ssh/pom.xml b/integration-tests/ssh/pom.xml index a9f25b0..31801b2 100644 --- a/integration-tests/ssh/pom.xml +++ b/integration-tests/ssh/pom.xml @@ -111,5 +111,16 @@ </dependency> </dependencies> </profile> + <profile> + <id>skip-testcontainers-tests</id> + <activation> + <property> + <name>skip-testcontainers-tests</name> + </property> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project>
