<?xml version="1.0"?>
 <!-- 
   Simple Ant test build file which when executed in Solaris 10 SPARC environment
   with Continuum 1.0.3 gives wrong system time (does not take into account timezones).
   Same test works correctly with Continuum 1.1 SNAPSHOT.
 -->
<project name="AntTest" default="timeTest" basedir=".">
    <target name="timeTest">
        <echo message="System date: " />
        <exec executable="date">
        </exec>
    </target>
</project>

