-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplugin.xml
32 lines (32 loc) · 1.5 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
29
30
31
32
<plugin name='geolocation' version='0.4' grailsVersion='1.3.7 > *'>
<author>Sebastien Blanc</author>
<authorEmail>[email protected]</authorEmail>
<title>Geolocation support</title>
<description>\
This plugin adds HTML5 geolocation support and offers some utlity methods to calculate distances and range checks
</description>
<documentation>http://grails.org/plugin/geolocation</documentation>
<type>GeolocationGrailsPlugin</type>
<resources>
<resource>org.grails.plugin.geolocation.GeolocationController</resource>
<resource>org.grails.plugin.geolocation.Coordinates</resource>
<resource>org.grails.plugin.geolocation.GeoPosition</resource>
<resource>org.grails.plugin.geolocation.GeolocationService</resource>
<resource>org.grails.plugin.geolocation.GeolocationTagLib</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://plugins.grails.org' />
<repository name='http://repo.grails.org/grails/plugins' url='http://repo.grails.org/grails/plugins/' />
<repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
<repository name='grailsCore' url='http://svn.codehaus.org/grails/trunk/grails-plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
</repositories>
<dependencies>
<runtime>
<dependency group='com.javadocmd' name='simplelatlng' version='1.0.0' />
</runtime>
</dependencies>
<plugins />
<runtimePluginRequirements />
<behavior />
</plugin>