-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
32 lines (32 loc) · 872 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
30
31
32
<project default="compile">
<path id="umlDoclet.classpath">
<fileset dir=".">
<include name="umldoclet-*.jar"/>
</fileset>
</path>
<target name="compile">
<mkdir dir="bin"/>
<javac srcdir="src" destdir="bin" release="21" includeantruntime="false"/>
<copy todir="bin">
<fileset dir="assets"/>
</copy>
</target>
<target name="jar" depends="compile">
<jar destfile="ES Mapper.jar">
<fileset dir="bin"/>
<manifest>
<attribute name="Main-Class" value="moctave.esmapper.Main"/>
</manifest>
</jar>
</target>
<target name="javadoc">
<mkdir dir="docs"/>
<javadoc destdir="docs" sourcepath="src" access="private">
<doclet name="nl.talsmasoftware.umldoclet.UMLDoclet" pathref="umlDoclet.classpath">
</doclet>
</javadoc>
</target>
<target name="run" depends="jar">
<java jar="ES Mapper.jar" fork="true"/>
</target>
</project>