mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
77a352b26b
|
|
@ -158,6 +158,7 @@
|
|||
|
||||
|
||||
3.11.2
|
||||
* Add asm jar to build.xml for maven builds (CASSANDRA-11193)
|
||||
* Round buffer size to powers of 2 for the chunk cache (CASSANDRA-13897)
|
||||
* Update jackson JSON jars (CASSANDRA-13949)
|
||||
* Avoid locks when checking LCS fanout and if we should defrag (CASSANDRA-13930)
|
||||
|
|
|
|||
10
build.xml
10
build.xml
|
|
@ -446,8 +446,9 @@
|
|||
<dependency groupId="de.jflex" artifactId="jflex" version="1.6.0" />
|
||||
<dependency groupId="com.github.rholder" artifactId="snowball-stemmer" version="1.3.0.581.1" />
|
||||
<dependency groupId="com.googlecode.concurrent-trees" artifactId="concurrent-trees" version="2.4.0" />
|
||||
<dependency groupId="com.github.ben-manes.caffeine" artifactId="caffeine" version="2.3.5" />
|
||||
<dependency groupId="org.jctools" artifactId="jctools-core" version="1.2.1"/>
|
||||
<dependency groupId="com.github.ben-manes.caffeine" artifactId="caffeine" version="2.3.5" />
|
||||
<dependency groupId="org.jctools" artifactId="jctools-core" version="1.2.1"/>
|
||||
<dependency groupId="org.ow2.asm" artifactId="asm" version="5.0.4" />
|
||||
</dependencyManagement>
|
||||
<developer id="adelapena" name="Andres de la Peña"/>
|
||||
<developer id="alakshman" name="Avinash Lakshman"/>
|
||||
|
|
@ -622,8 +623,9 @@
|
|||
<dependency groupId="org.fusesource" artifactId="sigar"/>
|
||||
<dependency groupId="org.eclipse.jdt.core.compiler" artifactId="ecj"/>
|
||||
<dependency groupId="org.caffinitas.ohc" artifactId="ohc-core"/>
|
||||
<dependency groupId="com.github.ben-manes.caffeine" artifactId="caffeine" />
|
||||
<dependency groupId="org.jctools" artifactId="jctools-core"/>
|
||||
<dependency groupId="com.github.ben-manes.caffeine" artifactId="caffeine" />
|
||||
<dependency groupId="org.jctools" artifactId="jctools-core"/>
|
||||
<dependency groupId="org.ow2.asm" artifactId="asm" />
|
||||
</artifact:pom>
|
||||
<artifact:pom id="dist-pom"
|
||||
artifactId="apache-cassandra"
|
||||
|
|
|
|||
Loading…
Reference in New Issue