mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into trunk
This commit is contained in:
commit
b92620c387
|
|
@ -1,4 +1,5 @@
|
|||
4.1
|
||||
* Exclude Jackson 1.x transitive dependency of hadoop* provided dependencies (CASSANDRA-16854)
|
||||
* Add client warnings and abort to tombstone and coordinator reads which go past a low/high watermark (CASSANDRA-16850)
|
||||
* Add TTL support to nodetool snapshots (CASSANDRA-16789)
|
||||
* Allow CommitLogSegmentReader to optionally skip sync marker CRC checks (CASSANDRA-16842)
|
||||
|
|
|
|||
|
|
@ -540,10 +540,12 @@
|
|||
<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"/>
|
||||
<exclusion groupId="org.slf4j" artifactId="slf4j-api"/>
|
||||
</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"/>
|
||||
<exclusion groupId="org.slf4j" artifactId="slf4j-api"/>
|
||||
</dependency>
|
||||
<dependency groupId="net.java.dev.jna" artifactId="jna" version="5.6.0"/>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ import static org.assertj.core.api.Assertions.assertThatIOException;
|
|||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import org.apache.cassandra.config.Duration;
|
||||
import org.codehaus.jackson.map.ObjectMapper;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
|
||||
public class SnapshotManifestTest
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue