diff --git a/CHANGES.txt b/CHANGES.txt index 36fe427f80..3d53e9e06e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 3.4 + * Set javac encoding to utf-8 (CASSANDRA-11077) * Integrate SASI index into Cassandra (CASSANDRA-10661) * Add --skip-flush option to nodetool snapshot * Skip values for non-queried columns (CASSANDRA-10657) diff --git a/build.xml b/build.xml index 035628a67e..16cebef2c9 100644 --- a/build.xml +++ b/build.xml @@ -759,14 +759,14 @@ @@ -792,7 +792,7 @@ - + @@ -1130,7 +1130,8 @@ destdir="${test.classes}" includeantruntime="false" source="${source.version}" - target="${target.version}"> + target="${target.version}" + encoding="utf-8">