Skip to content

Commit e0d45b3

Browse files
committed
dependency updates - CP v.5.5.0, Kafka v.2.5.0
1 parent ddf5cd1 commit e0d45b3

File tree

1 file changed

+30
-44
lines changed

1 file changed

+30
-44
lines changed

pom.xml

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

6868
<slf4j.version>1.7.25</slf4j.version>
69-
<kafka.version>2.1.0</kafka.version>
70-
<confluent.version>5.1.0</confluent.version>
71-
<confluent.patch.version>-cp1</confluent.patch.version>
72-
<jackson.version>2.9.7</jackson.version>
73-
<jackson.asl.version>1.9.13</jackson.asl.version>
69+
<kafka.version>2.5.0</kafka.version>
70+
<confluent.version>5.5.0</confluent.version>
71+
<jackson.version>2.10.2</jackson.version>
72+
<avro.version>1.9.2</avro.version>
7473

7574
<spotless.version>1.19.0</spotless.version>
7675

@@ -90,42 +89,14 @@
9089
<dependency>
9190
<groupId>org.apache.kafka</groupId>
9291
<artifactId>kafka-clients</artifactId>
93-
<version>${kafka.version}${confluent.patch.version}</version>
92+
<version>${kafka.version}</version>
9493
<scope>provided</scope>
9594
</dependency>
9695

9796
<dependency>
9897
<groupId>org.apache.kafka</groupId>
9998
<artifactId>connect-transforms</artifactId>
100-
<version>${kafka.version}${confluent.patch.version}</version>
101-
<scope>provided</scope>
102-
</dependency>
103-
104-
<dependency>
105-
<groupId>org.apache.zookeeper</groupId>
106-
<artifactId>zookeeper</artifactId>
107-
<version>3.4.13</version>
108-
<scope>provided</scope>
109-
<exclusions>
110-
<exclusion>
111-
<groupId>log4j</groupId>
112-
<artifactId>log4j</artifactId>
113-
</exclusion>
114-
<exclusion>
115-
<groupId>io.netty</groupId>
116-
<artifactId>netty</artifactId>
117-
</exclusion>
118-
<exclusion>
119-
<groupId>org.slf4j</groupId>
120-
<artifactId>slf4j-log4j12</artifactId>
121-
</exclusion>
122-
</exclusions>
123-
</dependency>
124-
125-
<dependency>
126-
<groupId>com.101tec</groupId>
127-
<artifactId>zkclient</artifactId>
128-
<version>0.10</version>
99+
<version>${kafka.version}</version>
129100
<scope>provided</scope>
130101
</dependency>
131102

@@ -137,16 +108,16 @@
137108
</dependency>
138109

139110
<dependency>
140-
<groupId>org.codehaus.jackson</groupId>
141-
<artifactId>jackson-core-asl</artifactId>
142-
<version>${jackson.asl.version}</version>
111+
<groupId>com.fasterxml.jackson.core</groupId>
112+
<artifactId>jackson-core</artifactId>
113+
<version>${jackson.version}</version>
143114
<scope>provided</scope>
144115
</dependency>
145116

146117
<dependency>
147-
<groupId>org.codehaus.jackson</groupId>
148-
<artifactId>jackson-mapper-asl</artifactId>
149-
<version>${jackson.asl.version}</version>
118+
<groupId>com.fasterxml.jackson.core</groupId>
119+
<artifactId>jackson-annotations</artifactId>
120+
<version>${jackson.version}</version>
150121
<scope>provided</scope>
151122
</dependency>
152123

@@ -178,11 +149,18 @@
178149
<scope>provided</scope>
179150
</dependency>
180151

152+
<dependency>
153+
<groupId>org.glassfish.jersey.ext</groupId>
154+
<artifactId>jersey-bean-validation</artifactId>
155+
<version>2.30</version>
156+
<scope>provided</scope>
157+
</dependency>
158+
181159
<!-- Runtime dependencies -->
182160
<dependency>
183161
<groupId>org.apache.avro</groupId>
184162
<artifactId>avro</artifactId>
185-
<version>1.8.1</version>
163+
<version>${avro.version}</version>
186164
</dependency>
187165

188166
<dependency>
@@ -201,8 +179,16 @@
201179
<artifactId>kafka-clients</artifactId>
202180
</exclusion>
203181
<exclusion>
204-
<groupId>com.fasterxml.jackson.core</groupId>
205-
<artifactId>jackson-databind</artifactId>
182+
<groupId>io.swagger</groupId>
183+
<artifactId>swagger-annotations</artifactId>
184+
</exclusion>
185+
<exclusion>
186+
<groupId>io.swagger</groupId>
187+
<artifactId>swagger-core</artifactId>
188+
</exclusion>
189+
<exclusion>
190+
<groupId>org.glassfish.jersey.ext</groupId>
191+
<artifactId>jersey-bean-validation</artifactId>
206192
</exclusion>
207193
</exclusions>
208194
</dependency>

0 commit comments

Comments
 (0)