forked from charliek/grails-statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (33 loc) · 1.28 KB
/
plugin.xml
File metadata and controls
33 lines (33 loc) · 1.28 KB
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
29
30
31
32
33
<plugin name='grails-statsd' version='0.5-RUMBLE' grailsVersion='2.0 > *'>
<author>Charlie Knudsen</author>
<authorEmail>charlie.knudsen@gmail.com</authorEmail>
<title>Grails Statsd Plugin</title>
<description>The statsd plugin provides integration with the statsd server and can be used to publish application metrics and activity.
</description>
<documentation>https://github.com/cdre/grails-statsd</documentation>
<type>GrailsStatsdGrailsPlugin</type>
<resources>
<resource>grails.plugin.statsd.StatsdService</resource>
<resource>grails.plugin.statsd.StatsdTimingService</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
</repositories>
<dependencies>
<test>
<dependency group='org.hamcrest' name='hamcrest-library' version='1.1' />
<dependency group='org.gmock' name='gmock' version='0.8.0' />
</test>
<compile>
<dependency group='org.apache.commons' name='commons-pool2' version='2.0' />
</compile>
</dependencies>
<plugins>
<build>
<plugin group='org.grails.plugins' name='release' version='2.2.1' />
</build>
</plugins>
<runtimePluginRequirements />
<behavior />
</plugin>