litesoft
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
34
35
|
<?xml version="1.0" encoding="UTF-8" ?>
<project default="all" basedir="." name="DTO_Quotes_v1">
<target name="all" depends="clean, jar"/>
<target name="clean">
<delete file="DTO_Quotes_v1.jar"/>
<delete file="../build/DTO_Quotes_v1.jar"/>
<delete dir="build"/>
</target>
<target name="dirs">
<mkdir dir="build"/>
</target>
<target name="jar" depends="compile">
<jar jarfile="DTO_Quotes_v1.jar">
<fileset dir="build" includes="**/*.class"/>
<fileset dir="src"/>
</jar>
<copy todir="../build" flatten="true">
<filelist dir="." files="DTO_Quotes_v1.jar"/>
</copy>
</target>
<target name="compile" depends="dirs">
<javac srcdir="src" destdir="build" debug="on" includeantruntime="false" deprecation="off" optimize="off">
<compilerarg line="-Xlint:"unchecked""/>
<classpath>
<pathelement location="../DTOsupport/DTOsupport.jar"/>
</classpath>
</javac>
</target>
</project>
|
Revision |
Author |
Commited |
Message |
793
|
GeorgeS
|
Sun 12 Aug, 2012 22:56:28 +0000 |
|