Subversion Repository Public Repository

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:&quot;unchecked&quot;"/>
            <classpath>
                <pathelement location="../DTOsupport/DTOsupport.jar"/>
            </classpath>
        </javac>
    </target>

</project>

Commits for litesoft/trunk/Java/Rest/RestfulDTOs/DTO_Quotes_v1/build.xml

Diff revisions: vs.
Revision Author Commited Message
793 GeorgeS picture GeorgeS Sun 12 Aug, 2012 22:56:28 +0000