Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0.1
-
Fix Version/s: 1.0.3
-
Component/s: None
-
Labels:None
-
Complexity:Intermediate
-
Number of attachments :
Description
I'm trying to configure my maven 2 pom to
send error and failure messages to one mailing list and success messages
to another. My pom has:
<ciManagement>
<system>continuum</system>
<notifiers>
<notifier>
<sendOnSuccess>false</sendOnSuccess>
<configuration>
<address>build-failure@lists.contentconnections.com</address>
</configuration>
</notifier>
<notifier>
<sendOnError>false</sendOnError>
<sendOnFailure>false</sendOnFailure>
<configuration>
<address>build-success@lists.contentconnections.com</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
When a project status changes, a message is sent to both lists regardless of whether the build failed or was successful.
Fixed.