Skip to content

Commit 34ff239

Browse files
authored
Merge pull request #776 from confluentinc/CC-26337-1
[CC-26337] Version bump for Jackson Databind package
2 parents fc9cc75 + 1b121a0 commit 34ff239

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Each line is a file pattern followed by one or more owners.
22
# These owners will be the default owners for everything in
33
# the repo.
4-
* @confluentinc/connect-team1
4+
* @confluentinc/connect-cloud

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
5353
<commons.codec.version>1.15</commons.codec.version>
5454
<snakeyaml.version>1.28</snakeyaml.version>
55+
<jackson.version>2.16.0</jackson.version>
5556
</properties>
5657

5758
<repositories>
@@ -233,6 +234,22 @@
233234
<version>${confluent.version}</version>
234235
<scope>test</scope>
235236
</dependency>
237+
<!-- Bumping the common package version resulted in a few build issues which cannot be resolved until the next CP release. Hence pinning the Jackson packages. After the CP release, we can bump the common version and remove the Jackson packages from this pom.-->
238+
<dependency>
239+
<groupId>com.fasterxml.jackson.core</groupId>
240+
<artifactId>jackson-databind</artifactId>
241+
<version>${jackson.version}</version>
242+
</dependency>
243+
<dependency>
244+
<groupId>com.fasterxml.jackson.core</groupId>
245+
<artifactId>jackson-core</artifactId>
246+
<version>${jackson.version}</version>
247+
</dependency>
248+
<dependency>
249+
<groupId>com.fasterxml.jackson.core</groupId>
250+
<artifactId>jackson-annotations</artifactId>
251+
<version>${jackson.version}</version>
252+
</dependency>
236253
</dependencies>
237254

238255
<build>

src/test/java/io/confluent/connect/elasticsearch/MappingTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
import static org.mockito.Mockito.mock;
3939
import static org.mockito.Mockito.when;
4040

41+
@SuppressWarnings("deprecation")
4142
public class MappingTest extends ElasticsearchSinkTestBase {
4243

4344
private static final String INDEX = "kafka-connect";

0 commit comments

Comments
 (0)