Exclude Jackson 1.x transitive dependency of hadoop* provided dependencies

patch by Tatu Saloranta; reviewed by Mick Semb Wever for CASSANDRA-16854
This commit is contained in:
Mick Semb Wever 2021-08-30 21:07:12 +02:00
parent 0c38f9dfb8
commit b0cdaec5ae
No known key found for this signature in database
GPG Key ID: E91335D77E3E87CB
2 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
3.11.12
* Exclude Jackson 1.x transitive dependency of hadoop* provided dependencies (CASSANDRA-16854)
* Validate SASI tokenizer options before adding index to schema (CASSANDRA-15135)
* Fixup scrub output when no data post-scrub and clear up old use of row, which really means partition (CASSANDRA-16835)
* Fix ant-junit dependency issue (CASSANDRA-16827)

View File

@ -377,9 +377,11 @@
<exclusion groupId="org.eclipse.jdt" artifactId="core"/>
<exclusion groupId="ant" artifactId="ant"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.codehaus.jackson" artifactId="jackson-mapper-asl"/>
</dependency>
<dependency groupId="org.apache.hadoop" artifactId="hadoop-minicluster" version="1.0.3" scope="provided">
<exclusion groupId="asm" artifactId="asm"/> <!-- this is the outdated version 3.1 -->
<exclusion groupId="org.codehaus.jackson" artifactId="jackson-mapper-asl"/>
</dependency>
<dependency groupId="net.java.dev.jna" artifactId="jna" version="4.2.2"/>