Skip to content

Commit

Permalink
Fixes issue #16 - Add kafka module (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jan 23, 2023
1 parent f916491 commit 3593cda
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-api</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion azure-eventbus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-azure-eventbus</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion azure-eventhubs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-azure-eventhubs</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-impl</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>jms</artifactId>
<artifactId>colibri-jms</artifactId>
<packaging>jar</packaging>
<name>Manorrock Colibri - JMS</name>
</project>
13 changes: 13 additions & 0 deletions kafka/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-kafka</artifactId>
<packaging>jar</packaging>
<name>Manorrock Colibri - Kafka</name>
</project>
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Manorrock Colibri - Project</name>
<description>
Expand Down Expand Up @@ -134,6 +134,7 @@
<module>azure-eventhubs</module>
<module>impl</module>
<module>jms</module>
<module>kafka</module>
<module>sse</module>
</modules>
<profiles>
Expand Down
2 changes: 1 addition & 1 deletion sse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.manorrock.colibri</groupId>
<artifactId>project</artifactId>
<version>22.3.0-SNAPSHOT</version>
<version>23.2.0-SNAPSHOT</version>
</parent>
<artifactId>colibri-sse</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit 3593cda

Please sign in to comment.