Skip to content

Commit

Permalink
DBZ-6320 Use dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed Apr 12, 2023
1 parent bd225e1 commit 61a243a
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions cassandra-3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@
<name>Debezium Connector for Cassandra 3</name>
<packaging>jar</packaging>

<properties>
<!-- Fixes compatibility JDK versions that may not yet dots in their names -->
<version.jamm>0.3.3</version.jamm>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.jbellis</groupId>
<artifactId>jamm</artifactId>
<version>${version.jamm}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.debezium</groupId>
Expand Down Expand Up @@ -45,19 +60,8 @@
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</exclusion>
<!-- Exclude bundled version that is not compatible with JDK names that do not have dots in their names -->
<exclusion>
<groupId>com.github.jbellis</groupId>
<artifactId>jamm</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Fixes compatibility JDK versions that may not yet dots in their names -->
<dependency>
<groupId>com.github.jbellis</groupId>
<artifactId>jamm</artifactId>
<version>0.3.3</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 61a243a

Please sign in to comment.