mirror of https://github.com/apache/lucene.git
don't fail the build if we cant delete on windows (it doesnt matter)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1395518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d9b8651fc8
commit
7fb5daa879
|
@ -544,12 +544,9 @@
|
||||||
<property name="lucene-core.uptodate" value="true"/>
|
<property name="lucene-core.uptodate" value="true"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- TODO: in the future, we don't need to actually put
|
<!-- NOTE: not really useful anymore ... -->
|
||||||
jars in the lib/ folders, but can just put in classpath.
|
|
||||||
only packaging tasks really need that (and could do it
|
|
||||||
under build/ directories) -->
|
|
||||||
<target name="clean-jars" description="Clean local jars">
|
<target name="clean-jars" description="Clean local jars">
|
||||||
<delete>
|
<delete failonerror="false">
|
||||||
<fileset dir="." includes="**/*.jar"/>
|
<fileset dir="." includes="**/*.jar"/>
|
||||||
</delete>
|
</delete>
|
||||||
</target>
|
</target>
|
||||||
|
|
|
@ -675,12 +675,9 @@
|
||||||
tofile="${analysis.conf.dest}/stopwords_tr.txt"/>
|
tofile="${analysis.conf.dest}/stopwords_tr.txt"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- TODO: in the future, we don't need to actually put
|
<!-- NOTE: not really useful anymore -->
|
||||||
jars in the lib/ folders, but can just put in classpath.
|
|
||||||
only packaging tasks really need that (and could do it
|
|
||||||
under build/ directories) -->
|
|
||||||
<target name="clean-jars" description="Clean local jars">
|
<target name="clean-jars" description="Clean local jars">
|
||||||
<delete>
|
<delete failonerror="false">
|
||||||
<fileset dir="." includes="**/*.jar"/>
|
<fileset dir="." includes="**/*.jar"/>
|
||||||
</delete>
|
</delete>
|
||||||
</target>
|
</target>
|
||||||
|
|
Loading…
Reference in New Issue