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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<project default="all" basedir="." name="LiteSoftClientGWT">

    <property name="DevRootDir" value="../../../.."/>




    <property name="zGlobalDir" value="${DevRootDir}/zGlobal"/>
    <property name="GWTsdk" value="${zGlobalDir}/GWT/gwt-2.2.0"/>
    <property name="GWTincubator" value="${zGlobalDir}/GWT/GWTincubator/gwt-incubator-20101117-r1766.jar"/>

    <target name="all" depends="clean, compile, package"/>

    <target name="dirs">
        <mkdir dir="build"/>
    </target>

    <target name="package">
        <jar jarfile="LiteSoftClientGWT.jar">
            <fileset dir="build"    includes="**/*.class"/>
            <fileset dir="src"      includes="**/*.java" excludes="**/.svn/**"/>
            <fileset dir="src"      includes="**/*.xml"  excludes="**/.svn/**"/>
        </jar>
        <jar jarfile="LiteSoftClientGWTpublic.jar">
            <fileset dir="src"      includes="**/public/**" excludes="**/.svn/**"/>
        </jar>
    </target>

    <target name="clean">
        <delete>
            <fileset dir="." includes="build/**/*"/>
            <fileset dir="." includes="LiteSoftClientGWT.jar"/>
            <fileset dir="." includes="LiteSoftClientGWTpublic.jar"/>
        </delete>
    </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="${LitesoftJavaDir}/libs/LiteSoft_csHomonyms.jar"/>
                <pathelement location="${LitesoftJavaDir}/libs/LiteSoftDeprecated.jar"/>
                <pathelement location="${LitesoftJavaDir}/logger/LiteSoftLogger.jar"/>
                <pathelement location="${LitesoftJavaDir}/core/Anywhere/LiteSoftAnywhere.jar"/>
        <pathelement location="${GWTsdk}/gwt-user.jar"/>
        <pathelement location="${GWTincubator}"/>
            </classpath>
        </javac>
    </target>

</project>

Commits for litesoft/trunk/Java/GWT/Client/build.xml

Diff revisions: vs.
Revision Author Commited Message
179 Diff Diff GeorgeS picture GeorgeS Mon 18 Apr, 2011 14:38:18 +0000
176 Diff Diff GeorgeS picture GeorgeS Fri 08 Apr, 2011 23:45:57 +0000
173 Diff Diff GeorgeS picture GeorgeS Tue 05 Apr, 2011 00:46:01 +0000
170 GeorgeS picture GeorgeS Mon 04 Apr, 2011 13:54:34 +0000