blob: afea02a7d2879961f54c4c211e709b3383f9e5d8 [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" />
<echo message="eclipse.home: ${eclipse.home}" />
<echo message="jvmLocation: ${jvmLocation}" />
<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>