<project name="dpbuddy.samples.domain" xmlns:dp="antlib:com.myarch.dpbuddy" >
<description>
Samples demonstrating domains-related DPBuddy tasks
</description>
<target name="reset.domain" description="Reset the DataPower domain">
<!-- Reset does not affect files, only the domain's configuration -->
<dp:resetDomain/>
</target>
<target name="restart.domain" description="Restart the DataPower domain">
<dp:restartDomain domain="default"/>
</target>
<target name="domain.all" depends="restart.domain" />
</project>