mirror of https://github.com/apache/lucene.git
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:
parent
0d8d2b9e12
commit
459a94d93d
|
@ -17,26 +17,16 @@
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<project name="solr-clustering" default="default" xmlns:ivy="antlib:org.apache.ivy.ant">
|
<project name="solr-clustering" default="default">
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
Clustering Integraton
|
Clustering Integraton
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<property name="test.lib.dir" location="test-lib"/>
|
|
||||||
|
|
||||||
<import file="../contrib-build.xml"/>
|
<import file="../contrib-build.xml"/>
|
||||||
|
|
||||||
<path id="test.classpath">
|
<path id="test.classpath">
|
||||||
<path refid="solr.test.base.classpath"/>
|
<path refid="solr.test.base.classpath"/>
|
||||||
<fileset dir="${test.lib.dir}" includes="*.jar"/>
|
<fileset dir="${test.lib.dir}" includes="*.jar"/>
|
||||||
</path>
|
</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>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue