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 2021/11/24 14:20:24 UTC

[camel-performance-tests] 30/33: Use a single point of parent POM for build, properties and BOMs

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-performance-tests.git

commit ae1adfd860426e591a2c0851efc7211eef7a7b76
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 24 15:06:05 2021 +0100

    Use a single point of parent POM for build, properties and BOMs
---
 profiling/kafka/kafka-postgresql/pom.xml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/profiling/kafka/kafka-postgresql/pom.xml b/profiling/kafka/kafka-postgresql/pom.xml
index 398cffb..261e14d 100644
--- a/profiling/kafka/kafka-postgresql/pom.xml
+++ b/profiling/kafka/kafka-postgresql/pom.xml
@@ -34,6 +34,37 @@
     <name>Camel Performance :: Profiling :: Kafka PostgreSQL</name>
     <description>A Kafka to PostgreSQL containeraized application to show profiling practices</description>
 
+    <properties>
+        <postgresql-driver-version>42.2.14</postgresql-driver-version>
+        <commons-dbcp2-version>2.8.0</commons-dbcp2-version>
+    </properties>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>io.quarkus</groupId>
+                <artifactId>quarkus-bom</artifactId>
+                <version>${quarkus.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.camel.k</groupId>
+                <artifactId>camel-k-runtime-bom</artifactId>
+                <version>${camel-k-runtime.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.camel.quarkus</groupId>
+                <artifactId>camel-quarkus-bom</artifactId>
+                <version>${camel-quarkus.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <dependencies>
         <dependency>
             <groupId>io.quarkus</groupId>