Notifiers can be set either in pom.xml or in Continuum (if you are using
one). In pom, the way to do it is:

  <ciManagement>
    <system>continuum</system>
    <url>http://127.0.0.1:8080/continuum</url>
    <notifiers>
      <notifier>
        <type>mail</type>
        <sendOnError>true</sendOnError>
        <sendOnFailure>true</sendOnFailure>
        <sendOnSuccess>false</sendOnSuccess>
        <sendOnWarning>false</sendOnWarning>
        <configuration>
          <address>[EMAIL PROTECTED]</address>
        </configuration>
      </notifier>
    </notifiers>
  </ciManagement>

(from
http://maven.apache.org/continuum/docs/1.1/user_guides/notification/index.html
)

Any number of things can happen that causes a build failure, so it's not a
good idea to send an email *only* to the last committer (what if he's not
around?). Wendy's suggestion is a standard practice.

Kalle


On Jan 18, 2008 11:26 AM, Wendy Smoak <[EMAIL PROTECTED]> wrote:

> On Jan 18, 2008 11:58 AM, Mick Knutson <[EMAIL PROTECTED]> wrote:
>
> > In each of my pom.xml's, I have developer settings:
> ...
> > This is what I want the configuration to use. I do not want to have to
> > duplicate my efforts.
>
> The usual way to do this is to set up a mailing list, have the CI
> server send mail to one place, and then people can subscribe to the
> list, watch an rss feed of it, etc.
>
> Perhaps you could suggest an enhancement for the notifier
> configuration, some way to tell it "send mail to all developers listed
> in this project".  (Which immediately suggests that you should be able
> to send only to people with a certain role in the project...)
>
> --
> Wendy
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to