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 2020/08/05 15:57:21 UTC

[camel-kafka-connector] branch fix-362 created (now 864d0ef)

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

acosentino pushed a change to branch fix-362
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


      at 864d0ef  Make the camel-kafka-connector archetype use the parent POM

This branch includes the following new commits:

     new 864d0ef  Make the camel-kafka-connector archetype use the parent POM

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kafka-connector] 01/01: Make the camel-kafka-connector archetype use the parent POM

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch fix-362
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 864d0efd76450098e32dfb68b7c27cc5ed718392
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Aug 5 17:56:26 2020 +0200

    Make the camel-kafka-connector archetype use the parent POM
---
 .../src/main/resources/archetype-resources/pom.xml            | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/archetypes/camel-kafka-connector-extensible-archetype/src/main/resources/archetype-resources/pom.xml b/archetypes/camel-kafka-connector-extensible-archetype/src/main/resources/archetype-resources/pom.xml
index 07a6f8c..7d1afe2 100644
--- a/archetypes/camel-kafka-connector-extensible-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/camel-kafka-connector-extensible-archetype/src/main/resources/archetype-resources/pom.xml
@@ -20,6 +20,12 @@
 
   <modelVersion>4.0.0</modelVersion>
 
+  <parent>
+     <groupId>org.apache.camel.kafkaconnector</groupId>
+     <artifactId>parent</artifactId>
+     <version>${camel-kafka-connector-version}</version>
+  </parent>
+
   <groupId>${groupId}</groupId>
   <artifactId>${artifactId}</artifactId>
   <packaging>jar</packaging>
@@ -30,7 +36,6 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <kafka-version>2.5.0</kafka-version>
     <camel-kafka-connector-version>${project.version}</camel-kafka-connector-version>
   </properties>
 
@@ -39,13 +44,13 @@
       <groupId>org.apache.kafka</groupId>
       <artifactId>connect-api</artifactId>
       <scope>provided</scope>
-      <version>${kafka-version}</version>
+      <version>${kafka.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.kafka</groupId>
       <artifactId>connect-transforms</artifactId>
       <scope>provided</scope>
-      <version>${kafka-version}</version>
+      <version>${kafka.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.camel.kafkaconnector</groupId>