mirror of https://github.com/apache/cassandra
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:
parent
0c38f9dfb8
commit
b0cdaec5ae
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue