source: other-projects/expeditee-release-kits/kits/rke/ant-scripts/compile.xml@ 28695

Last change on this file since 28695 was 28695, checked in by ak19, 10 years ago

Expeditee team (Jeremy, jts21). Preliminary versions of the release-kits files for generating an installer containing the executable expeditee jar file. The installer is still tattoed with Greenstone and fails, but will leave a working jar behind on the file system.

File size: 625 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rke-compile">
3
4 <target name="compile">
5 <!-- checkout expeditee -->
6 <exec executable="svn">
7 <arg value="checkout"/>
8 <arg value="https://svn.cms.waikato.ac.nz/svn/expeditee/trunk"/>
9 <arg value="${basedir}/compiled"/>
10 </exec>
11
12 <!-- we do not want the *.app folders if we are not mac-->
13 <if><bool><not><equals arg1="${rk.os}" arg2="mac"/></not></bool>
14 <!--<delete dir="${basedir}/compiled/client-gli.app"/>-->
15 </if>
16 <ant dir="${basedir}/compiled" antfile="${basedir}/compiled/build.xml" target="inst6" />
17 </target>
18
19</project>
Note: See TracBrowser for help on using the repository browser.