Hi all, I would like to be able to mail a nice pretty html build log. There is 
a slight dilema though. If I run:

ant -listener org.apache.tools.ant.XmlLogger

The log is not produced until the build is complete. I would like to do this in 
one invocation of ant. I think it might be possible if I write a wrapper target 
like so:

  <target name="build" depends="wrapper">
  </target>

  <target name="test">
    <tstamp>
      <format property="start.time" pattern="MM/dd/yyyy hh:mm:ss aa"/>
    </tstamp>
    <echo>${start.time}</echo>
  </target>

  <target name="wrapper">
    <ant target="test">
      <property name="listener" value="org.apache.tools.ant.XmlLogger"/>
    </ant>
    <style ... /style>
    <mail ... /mail>
  </target>

The problem I am having is with making the XmlLogger work via <ant> task. Any 
help would be appreciated.

Thanks,

______________________
Robert Anderson
Sr. System Engineer
Nike - Global Trade IT
503-532-6803 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to