This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.7.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a21e8512f06591705c15ebb2680f03529d9f9aa6 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 c81b222..0eba38d 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 04bbda3..8837bb4 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 06cb2ae..4fba947 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 eba41d4..a71542e 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 409a8c9..8436323 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 bd30216..3af7acf 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 6e21598..9cb2f8d 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 4c0e6e0..e7d8bc6 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 8c82d00..ac36c7f 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 c527fa6..4b3c2c9 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 2517e29..a47d83b 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 08d820f..f063b4d 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 9a801d6..1ee3fdd 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 93f5ad4..24307e0 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 12b5707..a87ed56 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 11502ca..e5837f2 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 53e42f5..a82bc4d 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 1db001a..099a4db 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 c840f0a..a2556c1 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 57167cc..2ea6a66 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 7aa5d38..2212a92 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 95bc9de..8fe257f 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 04c1307..f88e0fa 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 693a0fa..3266f38 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 b40954f..89dd798 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 255eb89..edab93a 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 0e9ea85..91f3cc1 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 4fa0bc1..769da09 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 b8f7007..1e956a6 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 74facf7..6597893 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 c6d42a6..351df17 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 d9a7ca0..2e9dc6c 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 8f4c841..a20e3b6 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 78238d7..fe433c2 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 6819e50..c98e520 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 85887cc..37c28b4 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 66e9830..f91f922 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 6fcd4c4..82b779c 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 23f714f..4842ce0 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 ce3cbb9..5878b49 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 a770a83..3a87a83 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 e12707d..1670dac 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 6a79a0e..b6a929c 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 1b876b7..1ec84af 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 864d9e5..6edffa3 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 8a7e6be..3c71497 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 72df45c..3f5261d 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 fbd6892..87e29f9 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 4fc06e6..36dfc04 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 29fb6e3..e2ce38a 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 cae7e30..7f09819 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 700a3ca..25cd0a0 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 604bf62..6a1b160 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 a33eb11..d367ded 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 36f52f1..357b3dd 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 681bd3fb..da5272d 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 5091826..a8be719 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 c622550..30da62c 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 beeb186..f6188fa 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 f83128f..f6489b9 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 fb5179c..bce1d37 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 07f0fb4..e19b252 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 f6e7edb..424d823 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 71c368d..20a4cab 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 8ba7be6..5c816c2 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 0a5241c..c7caf44 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 a328662..2cda15a 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 e955aa0..7d50303 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 cd72224..ea21ddd 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>
