mirror of https://github.com/apache/cassandra
use ivy to download source jars as well
This forces another round of IDE classpath updates. Sorry about that. Patch by eevans git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@905405 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c553ed0779
commit
25645f9397
|
|
@ -32,7 +32,7 @@ cassandra_bin=$cassandra_home/build/classes
|
|||
# The java classpath (required)
|
||||
CLASSPATH=$CASSANDRA_CONF:$cassandra_bin
|
||||
|
||||
for jar in $cassandra_home/lib/*.jar $cassandra_home/build/lib/*.jar; do
|
||||
for jar in $cassandra_home/lib/*.jar $cassandra_home/build/lib/jars/*.jar; do
|
||||
CLASSPATH=$CLASSPATH:$jar
|
||||
done
|
||||
|
||||
|
|
|
|||
|
|
@ -131,8 +131,8 @@
|
|||
</target>
|
||||
|
||||
<target name="ivy-retrieve" depends="ivy-download,ivy-init">
|
||||
<ivy:retrieve type="jar" conf="default" sync="true"
|
||||
pattern="${build.dir.lib}/[artifact]-[revision].[ext]" />
|
||||
<ivy:retrieve type="jar,source" conf="default" sync="true"
|
||||
pattern="${build.dir.lib}/[type]s/[artifact]-[revision].[ext]" />
|
||||
</target>
|
||||
|
||||
<!--
|
||||
|
|
|
|||
Loading…
Reference in New Issue