forked from sarxos/l2fprod-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
30 lines (24 loc) · 865 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
<project name="AnnProps" default="jar">
<property name="version" value="1.1"/>
<path id="classpath">
<pathelement location="bin" />
<pathelement location="lib/jcalendar-1.4.jar" />
</path>
<target name="compile">
<mkdir dir="build"/>
<javac encoding="UTF-8" srcdir="src-l2fprod" destdir="build" includes="**/*.java" fork="false">
<classpath refid="classpath"/>
</javac>
<javac encoding="UTF-8" srcdir="src-props" destdir="build" includes="**/*.java" fork="false">
<classpath refid="classpath"/>
</javac>
</target>
<target name="jar" depends="compile">
<unjar src="lib/jcalendar-1.4.jar" dest="build"/>
<jar destfile="annprops-${version}.jar" basedir="build" index="true">
<!--manifest>
<attribute name="Main-Class" value=""/>
</manifest-->
</jar>
</target>
</project>