mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.2' into cassandra-3.0
This commit is contained in:
commit
56d3f93249
|
|
@ -4,6 +4,7 @@
|
|||
* Remove unnecessary assertion from AntiCompactionTest (CASSANDRA-13070)
|
||||
* Fix cqlsh COPY for dates before 1900 (CASSANDRA-13185)
|
||||
Merged from 2.2
|
||||
* Fix "multiple versions of ant detected..." when running ant test (CASSANDRA-13232)
|
||||
* Coalescing strategy sleeps too much (CASSANDRA-13090)
|
||||
* Fix flaky LongLeveledCompactionStrategyTest (CASSANDRA-12202)
|
||||
* Fix failing COPY TO STDOUT (CASSANDRA-12497)
|
||||
|
|
|
|||
|
|
@ -155,10 +155,12 @@
|
|||
<fileset dir="${build.lib}">
|
||||
<include name="**/*.jar" />
|
||||
<exclude name="**/*-sources.jar"/>
|
||||
<exclude name="**/ant-*.jar"/>
|
||||
</fileset>
|
||||
<fileset dir="${build.dir.lib}">
|
||||
<include name="**/*.jar" />
|
||||
<exclude name="**/*-sources.jar"/>
|
||||
<exclude name="**/ant-*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
|
|
@ -1131,7 +1133,7 @@
|
|||
debug="true"
|
||||
debuglevel="${debuglevel}"
|
||||
destdir="${test.classes}"
|
||||
includeantruntime="false"
|
||||
includeantruntime="true"
|
||||
source="${source.version}"
|
||||
target="${target.version}"
|
||||
encoding="utf-8">
|
||||
|
|
|
|||
Loading…
Reference in New Issue