forked from konlpy/konlpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
29 lines (29 loc) · 961 Bytes
/
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
<project name="konlpy-java">
<property name="project-name" value="konlpy-java" />
<property name="bin" value="konlpy/java/bin" />
<property name="lib" value="konlpy/java" />
<property name="src" value="konlpy/java/src" />
<property name="ant.build.javac.source" value="1.7" />
<property name="ant.build.javac.target" value="1.7" />
<path id="master-classpath">
<fileset dir="${lib}">
<include name="*.jar" />
</fileset>
</path>
<target name="clean">
<delete failonerror="false">
<fileset dir="${bin}" includes="**/*"/>
</delete>
</target>
<target name="compile">
<mkdir dir="${bin}"/>
<javac srcdir="${src}"
destdir="${bin}"
includeantruntime="false"
encoding="utf-8">
<classpath refid="master-classpath" />
</javac>
</target>
<target name="run">
</target>
</project>