Author: crossley
Date: Wed Oct 19 01:36:32 2005
New Revision: 326472
URL: http://svn.apache.org/viewcvs?rev=326472&view=rev
Log:
Need to build before we can know whether to notify success or failure.
Modified:
forrest/branches/forrest_07_branch/tools/forrestbot/core/notify.xml
Modified: forrest/branches/forrest_07_branch/tools/forrestbot/core/notify.xml
URL:
http://svn.apache.org/viewcvs/forrest/branches/forrest_07_branch/tools/forrestbot/core/notify.xml?rev=326472&r1=326471&r2=326472&view=diff
==============================================================================
--- forrest/branches/forrest_07_branch/tools/forrestbot/core/notify.xml
(original)
+++ forrest/branches/forrest_07_branch/tools/forrestbot/core/notify.xml Wed Oct
19 01:36:32 2005
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
- Copyright 2004 The Apache Software Foundation or its licensors,
+ Copyright 2005 The Apache Software Foundation or its licensors,
as applicable.
Licensed under the Apache License, Version 2.0 (the "License");
@@ -48,7 +48,7 @@
</if>
</target>
- <target name="notify.local" depends="notify.init, build" if="notify.do"
description="FB: Notify to the console">
+ <target name="notify.local" depends="build, notify.init" if="notify.do"
description="FB: Notify to the console">
<tstamp>
<format property="NOW" pattern="dd MMMM hh:mm aa"/>
</tstamp>
@@ -70,7 +70,7 @@
<property name="notify.email.to" value="[EMAIL PROTECTED]"/>
<property name="notify.email.from" value="Forrestbot"/>
- <target name="notify.email" depends="notify.init, build" if="notify.do"
description="FB: Notify by email">
+ <target name="notify.email" depends="build, notify.init" if="notify.do"
description="FB: Notify by email">
<tstamp>
<format property="NOW" pattern="dd MMMM hh:mm aa"/>
</tstamp>
@@ -82,7 +82,7 @@
files="${build.logfile}"
messagefile="${bot.home}/core/emailtemplate.txt"
encoding="plain"
- </>
+ />
</target>
</project>