<?xml version="1.0" encoding="UTF-8"?>
<project name="XmlPropertyTaskTest" default="testXmlPropertyFile" basedir=".">
<target name="testXmlPropertyFile" description="Loading properties with XmlPropertyTask">
<xmlproperty file="../properties.xml"/>
<echo>Username: ${config.username}</echo>
<echo>Temp dir: ${config.temp-dir}</echo>
</target>
<target name="testOptionalMissingFileShouldNotFail" description="A missing optional file should not fail the build">
<xmlproperty file="always-missing.xml"/>
</target>
</project>
|