blob: cb313b1c1d2da10014b7f9c43d0710887d32b59c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project
name="init"
default="init"
basedir=".">
<target name="init">
<echo message="Initilialized" />
<property
name="initialized"
value="true" />
<property file="env.properties" />
<property
name="eclipseLocation"
value="${eclipseInstallLocation}/eclipse-33M4" />
<echo message="eclipseLocation: ${eclipseLocation}" />
<echo message="localUpdateSitePath: ${localUpdateSitePath}" />
<!-- mkdir, just for first time, doesn't hurt to call each time -->
<mkdir dir="${localUpdateSitePath}" />
<!-- delete any previous build workspace. Only interesting thing it has is .metadata/.log -->
<!-- since init runs each project, deletes too frequently
<delete
dir="${basedir}/buildworkspace"
failonerror="false" />
-->
</target>
</project>