You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/01 12:11:40 UTC

[camel] 06/08: CAMEL-19062 - Clean up Parent POM - Testcontainers

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 855c783783cfcf462fd069de5f88197ac95fd518
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 1 12:47:55 2023 +0100

    CAMEL-19062 - Clean up Parent POM - Testcontainers
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 components/camel-dhis2/camel-dhis2-component/pom.xml    | 1 +
 test-infra/camel-test-infra-azure-storage-queue/pom.xml | 2 +-
 test-infra/camel-test-infra-chatscript/pom.xml          | 3 ++-
 test-infra/camel-test-infra-couchdb/pom.xml             | 3 ++-
 test-infra/camel-test-infra-etcd3/pom.xml               | 1 +
 test-infra/camel-test-infra-fhir/pom.xml                | 3 ++-
 test-infra/camel-test-infra-hashicorp-vault/pom.xml     | 1 +
 test-infra/camel-test-infra-mosquitto/pom.xml           | 1 +
 test-infra/camel-test-infra-openldap/pom.xml            | 1 +
 test-infra/camel-test-infra-postgres/pom.xml            | 3 ++-
 test-infra/camel-test-infra-pulsar/pom.xml              | 4 +++-
 test-infra/camel-test-infra-solr/pom.xml                | 3 ++-
 test-infra/camel-test-infra-xmpp/pom.xml                | 3 ++-
 test-infra/camel-test-infra-zookeeper/pom.xml           | 3 ++-
 14 files changed, 23 insertions(+), 9 deletions(-)

diff --git a/components/camel-dhis2/camel-dhis2-component/pom.xml b/components/camel-dhis2/camel-dhis2-component/pom.xml
index 124a9220bd7..c39149e6b73 100644
--- a/components/camel-dhis2/camel-dhis2-component/pom.xml
+++ b/components/camel-dhis2/camel-dhis2-component/pom.xml
@@ -60,6 +60,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>postgresql</artifactId>
+            <version>${testcontainers-version}</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
diff --git a/test-infra/camel-test-infra-azure-storage-queue/pom.xml b/test-infra/camel-test-infra-azure-storage-queue/pom.xml
index 0f018a4650c..6952976fe22 100644
--- a/test-infra/camel-test-infra-azure-storage-queue/pom.xml
+++ b/test-infra/camel-test-infra-azure-storage-queue/pom.xml
@@ -1,4 +1,4 @@
-g<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!--
 
     Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/test-infra/camel-test-infra-chatscript/pom.xml b/test-infra/camel-test-infra-chatscript/pom.xml
index 2cc191ecbee..7917a9d2123 100644
--- a/test-infra/camel-test-infra-chatscript/pom.xml
+++ b/test-infra/camel-test-infra-chatscript/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
@@ -56,4 +57,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-couchdb/pom.xml b/test-infra/camel-test-infra-couchdb/pom.xml
index 2716431c973..c54858b3718 100644
--- a/test-infra/camel-test-infra-couchdb/pom.xml
+++ b/test-infra/camel-test-infra-couchdb/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
@@ -56,4 +57,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-etcd3/pom.xml b/test-infra/camel-test-infra-etcd3/pom.xml
index 48de2b2edf2..ad69de60679 100644
--- a/test-infra/camel-test-infra-etcd3/pom.xml
+++ b/test-infra/camel-test-infra-etcd3/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
 
         <dependency>
diff --git a/test-infra/camel-test-infra-fhir/pom.xml b/test-infra/camel-test-infra-fhir/pom.xml
index d9c375351ff..a1e55d43e88 100644
--- a/test-infra/camel-test-infra-fhir/pom.xml
+++ b/test-infra/camel-test-infra-fhir/pom.xml
@@ -44,6 +44,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
 
     </dependencies>
@@ -56,4 +57,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-hashicorp-vault/pom.xml b/test-infra/camel-test-infra-hashicorp-vault/pom.xml
index 1d285c39399..613ff0b7587 100644
--- a/test-infra/camel-test-infra-hashicorp-vault/pom.xml
+++ b/test-infra/camel-test-infra-hashicorp-vault/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
diff --git a/test-infra/camel-test-infra-mosquitto/pom.xml b/test-infra/camel-test-infra-mosquitto/pom.xml
index e689cb7e7aa..8df1e142702 100644
--- a/test-infra/camel-test-infra-mosquitto/pom.xml
+++ b/test-infra/camel-test-infra-mosquitto/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
diff --git a/test-infra/camel-test-infra-openldap/pom.xml b/test-infra/camel-test-infra-openldap/pom.xml
index b42fe9dd55f..d5e8d40eb58 100644
--- a/test-infra/camel-test-infra-openldap/pom.xml
+++ b/test-infra/camel-test-infra-openldap/pom.xml
@@ -42,6 +42,7 @@
 		<dependency>
 			<groupId>org.testcontainers</groupId>
 			<artifactId>testcontainers</artifactId>
+			<version>${testcontainers-version}</version>
 		</dependency>
 	</dependencies>
 
diff --git a/test-infra/camel-test-infra-postgres/pom.xml b/test-infra/camel-test-infra-postgres/pom.xml
index acb52aa97cb..3a1c05ee2bc 100644
--- a/test-infra/camel-test-infra-postgres/pom.xml
+++ b/test-infra/camel-test-infra-postgres/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
 
         <dependency>
@@ -62,4 +63,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-pulsar/pom.xml b/test-infra/camel-test-infra-pulsar/pom.xml
index be97c287b45..876464ad5c3 100644
--- a/test-infra/camel-test-infra-pulsar/pom.xml
+++ b/test-infra/camel-test-infra-pulsar/pom.xml
@@ -43,11 +43,13 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>pulsar</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
@@ -61,4 +63,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-solr/pom.xml b/test-infra/camel-test-infra-solr/pom.xml
index 310b666d9ba..2f15402feaf 100644
--- a/test-infra/camel-test-infra-solr/pom.xml
+++ b/test-infra/camel-test-infra-solr/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
     
@@ -56,4 +57,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-xmpp/pom.xml b/test-infra/camel-test-infra-xmpp/pom.xml
index b6a172215e8..0c6e2c327f3 100644
--- a/test-infra/camel-test-infra-xmpp/pom.xml
+++ b/test-infra/camel-test-infra-xmpp/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
@@ -56,4 +57,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>
diff --git a/test-infra/camel-test-infra-zookeeper/pom.xml b/test-infra/camel-test-infra-zookeeper/pom.xml
index 8c37b16bafa..188de2f6006 100644
--- a/test-infra/camel-test-infra-zookeeper/pom.xml
+++ b/test-infra/camel-test-infra-zookeeper/pom.xml
@@ -43,6 +43,7 @@
         <dependency>
             <groupId>org.testcontainers</groupId>
             <artifactId>testcontainers</artifactId>
+            <version>${testcontainers-version}</version>
         </dependency>
     </dependencies>
 
@@ -56,4 +57,4 @@
     </build>
 
 
-</project>
\ No newline at end of file
+</project>