Ticket #158: build.xml

File build.xml, 386 bytes (added by benpjohnson@…, 5 years ago)

build.xml to highlight mkdir/svnexport issue

Line 
1<?xml version="1.0"?>
2<project name="fresh" default="build" basedir=".">
3  <property name="repo" value="http://<svn_url>"/>
4  <target name="build" depends="clean">
5    <mkdir dir="build_temp"/>
6    <svnexport svnpath="/usr/local/bin/svn" repositoryurl="${repo}/" todir="./build_temp/export/"/>
7  </target>
8  <target name="clean">
9    <delete dir="./build_temp"/>
10  </target>
11</project>