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
The following commit(s) were added to refs/heads/main by this push:
new 739f70d Sql Kafka Profiling Example: Externalize dep versions
739f70d is described below
commit 739f70dd36a65221989b9074d9bd842249bf40ca
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>