This is an automated email from the ASF dual-hosted git repository.
mck pushed a commit to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cassandra-3.11 by this push:
new b0cdaec Exclude Jackson 1.x transitive dependency of hadoop* provided
dependencies
b0cdaec is described below
commit b0cdaec5ae31a80808f9892ef353cc3df6a47dbf
Author: Mick Semb Wever <[email protected]>
AuthorDate: Mon Aug 30 21:07:12 2021 +0200
Exclude Jackson 1.x transitive dependency of hadoop* provided dependencies
patch by Tatu Saloranta; reviewed by Mick Semb Wever for CASSANDRA-16854
---
CHANGES.txt | 1 +
build.xml | 2 ++
2 files changed, 3 insertions(+)
diff --git a/CHANGES.txt b/CHANGES.txt
index 9b6a6dc..aa0ad38 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)
diff --git a/build.xml b/build.xml
index 1e5a126..34bca92 100644
--- a/build.xml
+++ b/build.xml
@@ -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"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]