This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
28 lines (28 loc) · 1.45 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<plugin name='xmpp' version='0.1' grailsVersion='1.1 > *'>
<author>Fábio Franco Uechi</author>
<authorEmail>[email protected]</authorEmail>
<title>Grails XMPP Plugin</title>
<description>\
Provides XMPP/Jabber based services to grails applications. Built upon the Smack API this plugin allows
an application to send and receive xmpp packets (presence, message, etc). Basically it creates a Roster
which automatically connects, to a pre configured host, at application startup. All the mentioned xmpp
services rely upon this Roster. Eases the development of real-time web applications.
One of the main features is the ability to expose methods as commands (method name = command) making it
easier to develop XmppBots, for example.
Another feature is auto-detection of PacketListeners and RosterListeners.
</description>
<documentation>http://grails.org/GrailsXmpp+Plugin</documentation>
<resources>
<resource>org.grails.xmpp.XmppController</resource>
<resource>XmppBootStrap</resource>
<resource>UrlMappings</resource>
<resource>Config</resource>
<resource>DataSource</resource>
<resource>org.grails.xmpp.XmppService</resource>
<resource>org.grails.xmpp.DefaultXmppBotService</resource>
<resource>org.grails.xmpp.PacketListenerImplementerService</resource>
<resource>org.grails.xmpp.PogoTestService</resource>
<resource>org.grails.xmpp.RosterListenerImplementerService</resource>
</resources>
<dependencies />
</plugin>