/[projects]/android/TrainInfoServiceGoogle/build.xml
ViewVC logotype

Diff of /android/TrainInfoServiceGoogle/build.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1080 by torben, Mon Sep 20 20:11:55 2010 UTC revision 1996 by torben, Sat Jul 6 09:33:04 2013 UTC
# Line 1  Line 1 
1  <project name="Guestbook" default="datanucleusenhance">  <project name="Guestbook" default="datanucleusenhance">
2    <property name="sdk.dir" location="/home/torben/inst/appengine-java-sdk-1.3.7/" />    <property name="sdk.dir" location="/mnt/qnap/xen/tools/appengine-java-sdk-1.6.0/" />
3    
4    <import file="${sdk.dir}/config/user/ant-macros.xml" />    <import file="${sdk.dir}/config/user/ant-macros.xml" />
5    
# Line 22  Line 22 
22          <include name="**/*.jar" />          <include name="**/*.jar" />
23        </fileset>        </fileset>
24      </copy>      </copy>
25      </target>  
26    
27      <target name="libs">
28            <echo message="--CircuitBreaker--" />
29            <ant dir="../CircuitBreaker/" antfile="../CircuitBreaker/build.xml" inheritAll="false" />
30            <echo message="--CircuitBreaker END--" />
31            <copy file="../CircuitBreaker/CircuitBreaker.jar" todir="war/WEB-INF/lib" />
32    
33    
34            <echo message="--TrainInfoCommon--" />
35            <ant dir="../TrainInfoCommon/" antfile="../TrainInfoCommon/build.xml" inheritAll="false" />
36            <echo message="--TrainInfoCommon END--" />
37            <copy todir="war/WEB-INF/lib">
38                <fileset dir="../TrainInfoCommon">
39                    <include name="*.jar"/>
40                </fileset>
41            </copy>
42    </target>    </target>
43    
44    <target name="compile" depends="copyjars"  
45      <target name="compile" depends="copyjars,libs"
46        description="Compiles Java source and copies other source files to the WAR.">        description="Compiles Java source and copies other source files to the WAR.">
47      <mkdir dir="war/WEB-INF/classes" />      <mkdir dir="war/WEB-INF/classes" />
48      <copy todir="war/WEB-INF/classes">      <copy todir="war/WEB-INF/classes">
# Line 76  Line 94 
94      </appcfg>      </appcfg>
95    </target>    </target>
96    
97      <target name="clean">
98        <delete dir="war/WEB-INF/classes" />
99        <delete dir="war/WEB-INF/appengine-generated" />
100      </target>
101    
102  </project>  </project>

Legend:
Removed from v.1080  
changed lines
  Added in v.1996

  ViewVC Help
Powered by ViewVC 1.1.20