Subversion Repository Public Repository

litesoft

@ HEAD
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Litesoft Tools Build -->
<project name="Litesoft" default="gwt" basedir="." >

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

    <target name="clean">
        <delete>
            <fileset dir="." includes="jars/*.jar" />
        </delete>
        <delete file="last.build" quiet="true"/>
        <ant dir="core/jvm1.4" target="clean" inheritAll="true" />
        <ant dir="GWT/Client"  target="clean" inheritAll="true" />
        <ant dir="core/jvm1.5" target="clean" inheritAll="true" />
        <ant dir="GWT/Server"  target="clean" inheritAll="true" />
     </target>

    <condition property="gwt.flavor" value="linux">
       <os name="Linux"/>
    </condition>
    <condition property="gwt.flavor" value="mac">
       <os family="mac"/>
    </condition>
    <condition property="gwt.flavor" value="windows">
       <os family="windows"/>
    </condition>

    <property name="gwtdir" value="../../../ForeignPackages/gwt-${gwt.flavor}-1.5.3"/>

    <target name="gwt" depends="clean, dirs">
        <!--<copy file="RPCpassable/gwtIsSerializable/RPCpassable.jar" preservelastmodified="true" todir="jars"/>-->
        <!--<copy file="RPCpassable/javaSerializable/RPCpassable.jar" preservelastmodified="true" todir="jars"/>-->
        <!--<copy file="deprecated/LiteSoftDeprecated.jar" preservelastmodified="true" todir="jars"/>-->

        <ant dir="core/jvm1.4" inheritAll="true" />
        <ant dir="GWT/Client"  inheritAll="true" />
        <ant dir="core/jvm1.5" inheritAll="true" />
        <ant dir="GWT/Server"  inheritAll="true" />
    </target>

    <target name="build" depends="dirs">
        <ant dir="core/jvm1.4" target="jar" inheritAll="true" />
        <ant dir="GWT/Client"  target="jar" inheritAll="true" />
        <ant dir="core/jvm1.5" target="jar" inheritAll="true" />
        <ant dir="GWT/Server"  target="jar" inheritAll="true" />
    </target>

    <target name="WC">
        <delete dir="build"/>
        <mkdir dir="build/org/litesoft/orsup/selection/nonpublic"/>
        <copy todir="build/org/litesoft/orsup/selection">
            <fileset dir="core/Server/src/org/litesoft/orsup/selection" includes="**/*.java" />
        </copy>
        <mkdir dir="build/org/litesoft/core"/>
        <copy todir="build/org/litesoft/core">
            <fileset dir="core/Anywhere/src/org/litesoft/core" includes="SQL*.java" />
        </copy>
        <javac destdir="build" debug="on" deprecation="off" optimize="off" >
            <src path="build"/>
            <include name="**/*.java" />
            <exclude name="**/WhereClauseFactoryTest.java" />
        </javac>
        <jar jarfile="LiteSoftWhereClause.jar">
            <fileset dir="build" includes="**/*"/>
        </jar>
    </target>

</project>

Commits for litesoft/trunk/Java/build.xml

Diff revisions: vs.
Revision Author Commited Message
66 Diff Diff GeorgeS picture GeorgeS Tue 12 Oct, 2010 16:44:38 +0000

Isolation and creation of LiteSoft’s WhereClause code into a JAR

2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000