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

acosentino pushed a commit to branch sql-kafka-dep-version
in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git

commit 0f9c38fae4aff8d1e5d7f97957a8ea7a6f6acdc9
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu Oct 7 15:02:39 2021 +0200

    Sql Kafka Profiling Example: Externalize dep versions
---
 profiling/sql-kafka/pom.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/profiling/sql-kafka/pom.xml b/profiling/sql-kafka/pom.xml
index f91612b..e707f3a 100644
--- a/profiling/sql-kafka/pom.xml
+++ b/profiling/sql-kafka/pom.xml
@@ -52,6 +52,8 @@
         <camel-k-runtime.version>1.9.0</camel-k-runtime.version>
         <camel-quarkus.version>2.2.0</camel-quarkus.version>
         <camel-kamelets-catalog.version>0.4.0</camel-kamelets-catalog.version>
+        <postgresql-driver-version>42.2.14</postgresql-driver-version>
+        <commons-dbcp2-version>2.8.0</commons-dbcp2-version>
     </properties>
 
     <dependencyManagement>
@@ -117,12 +119,12 @@
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-dbcp2</artifactId>
-            <version>2.8.0</version>
+            <version>${commons-dbcp2-version}</version>
         </dependency>
         <dependency>
             <groupId>org.postgresql</groupId>
             <artifactId>postgresql</artifactId>
-            <version>42.2.14</version>
+            <version>${postgresql-driver-version}</version>
         </dependency>
     </dependencies>
 

Reply via email to