simplify build.xml: specialization for test.lib.dir and test-lib resolution are no longer needed, since they're now defined in ../contrib-build.xml

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1626429 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2014-09-20 12:41:15 +00:00
parent 0d8d2b9e12
commit 459a94d93d
1 changed files with 1 additions and 11 deletions

View File

@ -17,26 +17,16 @@
limitations under the License.
-->
<project name="solr-clustering" default="default" xmlns:ivy="antlib:org.apache.ivy.ant">
<project name="solr-clustering" default="default">
<description>
Clustering Integraton
</description>
<property name="test.lib.dir" location="test-lib"/>
<import file="../contrib-build.xml"/>
<path id="test.classpath">
<path refid="solr.test.base.classpath"/>
<fileset dir="${test.lib.dir}" includes="*.jar"/>
</path>
<target name="resolve" depends="ivy-availability-check,ivy-fail,ivy-configure">
<sequential>
<ivy:retrieve conf="compile" type="jar,bundle" sync="${ivy.sync}" log="download-only"/>
<ivy:retrieve conf="test" type="jar,bundle,test" sync="${ivy.sync}" log="download-only"
pattern="${test.lib.dir}/[artifact]-[revision](-[classifier]).[ext]"/>
</sequential>
</target>
</project>