mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into trunk
This commit is contained in:
commit
cbb982cc17
12
build.xml
12
build.xml
|
|
@ -205,7 +205,7 @@
|
|||
<target name="gen-cql3-grammar" depends="check-gen-cql3-grammar" unless="cql3current">
|
||||
<echo>Building Grammar ${build.src.java}/org/apache/cassandra/cql3/Cql.g ...</echo>
|
||||
<java classname="org.antlr.Tool"
|
||||
classpath="${build.dir.lib}/jars/antlr-3.5.2.jar;${build.lib}/antlr-runtime-3.5.2.jar;${build.lib}/stringtemplate-4.0.2.jar"
|
||||
classpath="${build.dir.lib}/jars/antlr-3.5.2.jar;${build.lib}/antlr-runtime-3.5.2.jar;${build.lib}/ST4-4.0.8.jar"
|
||||
fork="true"
|
||||
failonerror="true">
|
||||
<jvmarg value="-Xmx512M" />
|
||||
|
|
@ -327,9 +327,12 @@
|
|||
<dependency groupId="org.apache.commons" artifactId="commons-lang3" version="3.1"/>
|
||||
<dependency groupId="org.apache.commons" artifactId="commons-math3" version="3.2"/>
|
||||
<dependency groupId="com.googlecode.concurrentlinkedhashmap" artifactId="concurrentlinkedhashmap-lru" version="1.3"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr" version="3.5.2"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr-runtime" version="3.5.2"/>
|
||||
<dependency groupId="org.antlr" artifactId="stringtemplate" version="4.0.2"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr" version="3.5.2">
|
||||
<exclusion groupId="org.antlr" artifactId="stringtemplate"/>
|
||||
</dependency>
|
||||
<dependency groupId="org.antlr" artifactId="antlr-runtime" version="3.5.2">
|
||||
<exclusion groupId="org.antlr" artifactId="stringtemplate"/>
|
||||
</dependency>
|
||||
<dependency groupId="org.slf4j" artifactId="slf4j-api" version="1.7.2"/>
|
||||
<dependency groupId="org.slf4j" artifactId="log4j-over-slf4j" version="1.7.2"/>
|
||||
<dependency groupId="org.slf4j" artifactId="jcl-over-slf4j" version="1.7.2" />
|
||||
|
|
@ -478,7 +481,6 @@
|
|||
<dependency groupId="com.googlecode.concurrentlinkedhashmap" artifactId="concurrentlinkedhashmap-lru"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr-runtime"/>
|
||||
<dependency groupId="org.antlr" artifactId="stringtemplate" version="4.0.2"/>
|
||||
<dependency groupId="org.slf4j" artifactId="slf4j-api"/>
|
||||
<dependency groupId="org.slf4j" artifactId="log4j-over-slf4j"/>
|
||||
<dependency groupId="org.slf4j" artifactId="jcl-over-slf4j"/>
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue