forked from mstein/elasticsearch-grails-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
40 lines (40 loc) · 2.07 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
33
34
35
36
37
38
39
40
<plugin name='elasticsearch' version='0.19.4-SNAPSHOT' grailsVersion='2.1.0 > *'>
<author>Manuarii Stein</author>
<authorEmail>mstein@doc4web.com</authorEmail>
<title>Elastic Search Plugin</title>
<description>[Elastic Search|http://www.elasticsearch.com] is a distributed, RESTful service for full text search. This plugin provides a Grails-friendly API for the service based on the tremendously successful [Searchable plugin|/plugin/searchable]. It even provides an embedded version of the service for easy testing and development.</description>
<documentation>http://smaldini.github.com/elasticsearch-grails-plugin/docs/guide/index.html</documentation>
<type>ElasticsearchGrailsPlugin</type>
<resources>
<resource>BootStrap</resource>
<resource>DefaultElasticSearch</resource>
<resource>ElasticsearchBootStrap</resource>
<resource>org.grails.plugins.elasticsearch.ElasticSearchAdminService</resource>
<resource>org.grails.plugins.elasticsearch.ElasticSearchService</resource>
<resource>test.RoleConverter</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
<repository name='http://oss.sonatype.org/content/repositories/releases/' url='http://oss.sonatype.org/content/repositories/releases/' />
<repository name='http://maven.glassfish.org/content/groups/public/' url='http://maven.glassfish.org/content/groups/public/' />
<repository name='Codehaus' url='http://repository.codehaus.org/' />
</repositories>
<dependencies>
<runtime>
<dependency group='org.elasticsearch' name='elasticsearch-lang-groovy' version='1.1.0'/>
<dependency group='org.elasticsearch' name='elasticsearch' version='0.19.9'/>
</runtime>
</dependencies>
<plugins>
<compile>
</compile>
<runtime>
</runtime>
<build>
</build>
</plugins>
<runtimePluginRequirements />
<behavior />
</plugin>