mirror of https://github.com/apache/lucene.git
LUCENE-3930: kuromoji steals icu's jar
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1308423 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8cfbb7948b
commit
6b16efdc22
|
@ -59,7 +59,7 @@
|
|||
</target>
|
||||
|
||||
<path id="tools.dependencies">
|
||||
<fileset dir="../icu/lib" includes="icu4j-*.jar"/>
|
||||
<fileset dir="../icu/lib" includes="icu4j-4.8.1.1.jar"/>
|
||||
</path>
|
||||
|
||||
<path id="tools.classpath">
|
||||
|
@ -98,7 +98,14 @@
|
|||
</sequential>
|
||||
</target>
|
||||
|
||||
<target name="compile-tools" depends="compile-core, common.compile-tools">
|
||||
<!-- we don't actually need to compile this thing, we just want its lib -->
|
||||
<target name="resolve-icu">
|
||||
<ant dir="../icu/" target="resolve" inheritAll="false">
|
||||
<propertyset refid="uptodate.and.compiled.properties"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="compile-tools" depends="resolve-icu, compile-core, common.compile-tools">
|
||||
<compile
|
||||
srcdir="src/tools/java"
|
||||
destdir="${build.dir}/classes/tools">
|
||||
|
|
Loading…
Reference in New Issue