forked from larsmans/lucene-stanford-lemmatizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
33 lines (26 loc) · 1.06 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0"?>
<project name="lucene-stanford-lemmatizer" default="compile" basedir=".">
<property name="srcdir" value="src" />
<property name="builddir" value="class" />
<property name="docdir" value="javadoc" />
<target name="init">
<mkdir dir="${builddir}" />
</target>
<target name="compile" depends="init">
<javac srcdir="${srcdir}" destdir="${builddir}" />
</target>
<target name="jar" depends="compile" description="Generate jar file">
<jar jarfile="lucene-stanford-lemmatizer.jar" basedir="${builddir}" />
</target>
<target name="javadoc" description="Generate HTML API documentation">
<javadoc destdir="${docdir}" author="true" version="true"
windowtitle="lucene-stanford-lemmatizer API">
<fileset dir="${srcdir}">
<include name="**/*.java" />
</fileset>
<link href="http://download.oracle.com/javase/6/docs/api/" />
<link href="http://lucene.apache.org/java/3_0_3/api/all/" />
<link href="http://nlp.stanford.edu/nlp/javadoc/javanlp/" />
</javadoc>
</target>
</project>