|
5 | 5 | <parent> |
6 | 6 | <groupId>io.confluent</groupId> |
7 | 7 | <artifactId>common</artifactId> |
8 | | - <version>6.1.16-32</version> |
| 8 | + <version>6.0.0</version> |
9 | 9 | </parent> |
10 | 10 |
|
11 | 11 | <groupId>io.confluent</groupId> |
|
52 | 52 | <confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo> |
53 | 53 | <commons.codec.version>1.15</commons.codec.version> |
54 | 54 | <snakeyaml.version>1.28</snakeyaml.version> |
55 | | - <confluent.version>6.1.15</confluent.version> |
| 55 | + <jackson.version>2.16.0</jackson.version> |
56 | 56 | </properties> |
57 | 57 |
|
58 | 58 | <repositories> |
59 | 59 | <repository> |
60 | 60 | <id>confluent</id> |
61 | 61 | <name>Confluent</name> |
62 | | - <url>https://packages.confluent.io/maven/</url> |
| 62 | + <url>http://packages.confluent.io/maven/</url> |
63 | 63 | </repository> |
64 | 64 | </repositories> |
65 | 65 |
|
|
157 | 157 | <type>test-jar</type> |
158 | 158 | <scope>test</scope> |
159 | 159 | </dependency> |
| 160 | + <!-- Use a repackaged version of log4j with security patches. Default log4j v1.2 is a transitive dependency of connect-runtime, but it is excluded in common/pom.xml --> |
| 161 | + <dependency> |
| 162 | + <groupId>io.confluent</groupId> |
| 163 | + <artifactId>confluent-log4j</artifactId> |
| 164 | + <scope>test</scope> |
| 165 | + </dependency> |
160 | 166 | <dependency> |
161 | 167 | <groupId>org.apache.kafka</groupId> |
162 | 168 | <artifactId>connect-runtime</artifactId> |
|
228 | 234 | <version>${confluent.version}</version> |
229 | 235 | <scope>test</scope> |
230 | 236 | </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> |
231 | 253 | </dependencies> |
232 | 254 |
|
233 | 255 | <build> |
|
0 commit comments