Skip to content

Commit 4549bbf

Browse files
committed
Removed kafka-clients version, using confluent-version instead. Added ZK lib in provided scope. Added property for jersey.bean.validation version
1 parent ebac2a8 commit 4549bbf

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

pom.xml

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
<maven.compiler.target>1.8</maven.compiler.target>
6767

6868
<slf4j.version>1.7.25</slf4j.version>
69-
<kafka.version>2.5.0</kafka.version>
7069
<confluent.version>5.5.0</confluent.version>
7170
<jackson.version>2.10.2</jackson.version>
7271
<avro.version>1.9.2</avro.version>
72+
<jersey.bean.validation.version>2.30</jersey.bean.validation.version>
7373

7474
<spotless.version>1.19.0</spotless.version>
7575

@@ -89,17 +89,38 @@
8989
<dependency>
9090
<groupId>org.apache.kafka</groupId>
9191
<artifactId>kafka-clients</artifactId>
92-
<version>${kafka.version}</version>
92+
<version>${confluent.version}-ccs</version>
9393
<scope>provided</scope>
9494
</dependency>
9595

9696
<dependency>
9797
<groupId>org.apache.kafka</groupId>
9898
<artifactId>connect-transforms</artifactId>
99-
<version>${kafka.version}</version>
99+
<version>${confluent.version}-ccs</version>
100100
<scope>provided</scope>
101101
</dependency>
102102

103+
<dependency>
104+
<groupId>org.apache.zookeeper</groupId>
105+
<artifactId>zookeeper</artifactId>
106+
<version>3.4.13</version>
107+
<scope>provided</scope>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>log4j</groupId>
111+
<artifactId>log4j</artifactId>
112+
</exclusion>
113+
<exclusion>
114+
<groupId>io.netty</groupId>
115+
<artifactId>netty</artifactId>
116+
</exclusion>
117+
<exclusion>
118+
<groupId>org.slf4j</groupId>
119+
<artifactId>slf4j-log4j12</artifactId>
120+
</exclusion>
121+
</exclusions>
122+
</dependency>
123+
103124
<dependency>
104125
<groupId>com.fasterxml.jackson.core</groupId>
105126
<artifactId>jackson-databind</artifactId>
@@ -152,7 +173,7 @@
152173
<dependency>
153174
<groupId>org.glassfish.jersey.ext</groupId>
154175
<artifactId>jersey-bean-validation</artifactId>
155-
<version>2.30</version>
176+
<version>${jersey.bean.validation.version}</version>
156177
<scope>provided</scope>
157178
</dependency>
158179

0 commit comments

Comments
 (0)