You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by jv...@apache.org on 2005/06/20 00:46:00 UTC

svn commit: r191368 - /maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml

Author: jvanzyl
Date: Sun Jun 19 15:45:59 2005
New Revision: 191368

URL: http://svn.apache.org/viewcvs?rev=191368&view=rev
Log:
o putting the notifier components in a separate file for now and removing them
  from application.xml because the jabber/msn components themselves do not
  have components.xml file withing the JARs.
  
  Emmanuel, can you take a look at this?
  

Added:
    maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml

Added: maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml?rev=191368&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml (added)
+++ maven/continuum/trunk/continuum-plexus-application/src/conf/notifier.xml Sun Jun 19 15:45:59 2005
@@ -0,0 +1,54 @@
+
+    <!--
+    | The irc notifier
+    |-->
+    <component>
+      <role>org.codehaus.plexus.notification.notifier.Notifier</role>
+      <role-hint>irc</role-hint>
+      <implementation>org.apache.maven.continuum.notification.irc.IrcContinuumNotifier</implementation>
+      <requirements>
+        <requirement>
+          <role>org.codehaus.plexus.ircbot.IrcBot</role>
+          <role-hint>client</role-hint>
+        </requirement>
+      </requirements>
+    </component>
+
+    <!--
+    | The jabber notifier
+    |-->
+    <component>
+      <role>org.codehaus.plexus.notification.notifier.Notifier</role>
+      <role-hint>jabber</role-hint>
+      <implementation>org.apache.maven.continuum.notification.jabber.JabberContinuumNotifier</implementation>
+      <requirements>
+        <requirement>
+          <role>org.codehaus.plexus.jabber.JabberClient</role>
+        </requirement>
+      </requirements>
+      <!-- configuration>
+        <from-address/>
+        <from-password/>
+        <host/>
+        <port/>
+      </configuration -->
+    </component>
+
+    <!--
+    | The MSN notifier
+    |-->
+    <component>
+      <role>org.codehaus.plexus.notification.notifier.Notifier</role>
+      <role-hint>msn</role-hint>
+      <implementation>org.apache.maven.continuum.notification.msn.MsnContinuumNotifier</implementation>
+      <requirements>
+        <requirement>
+          <role>org.codehaus.plexus.msn.MsnClient</role>
+        </requirement>
+      </requirements>
+      <!-- configuration>
+        <from-address/>
+        <from-password/>
+      </configuration -->
+    </component>
+