1
- # Elasticsearch plugin descriptor file
2
- # This file must exist as 'plugin-descriptor.properties' at
3
- # the root directory of all plugins.
4
- #
5
- # A plugin can be 'site', 'jvm', or both.
6
- #
7
- # ## example site plugin for "foo":
8
- #
9
- # foo.zip <-- zip file for the plugin, with this structure:
10
- # _site/ <-- the contents that will be served
11
- # plugin-descriptor.properties <-- example contents below:
12
- #
13
- # site=true
14
- # description=My cool plugin
15
- # version=1.0
16
- #
17
- # ## example jvm plugin for "foo"
18
- #
19
- # foo.zip <-- zip file for the plugin, with this structure:
20
- # <arbitrary name1>.jar <-- classes, resources, dependencies
21
- # <arbitrary nameN>.jar <-- any number of jars
22
- # plugin-descriptor.properties <-- example contents below:
23
- #
24
- # jvm=true
25
- # classname=foo.bar.BazPlugin
26
- # description=My cool plugin
27
- # version=2.0
28
- # elasticsearch.version=2.0
29
- # java.version=1.7
30
- #
31
- # ## mandatory elements for all plugins:
32
- #
33
- # 'description': simple summary of the plugin
1
+ name =readonlyrest
34
2
description =${project.description}
35
- #
36
- # 'version': plugin's version
37
3
version =${project.version}
38
- #
39
- # ## mandatory elements for site plugins:
40
- #
41
- # 'site': set to true to indicate contents of the _site/
42
- # directory in the root of the plugin should be served.
43
4
site =false
44
- #
45
- # ## mandatory elements for jvm plugins :
46
- #
47
- # 'jvm': true if the 'classname' class should be loaded
48
- # from jar files in the root directory of the plugin.
49
- # Note that only jar files in the root directory are
50
- # added to the classpath for the plugin! If you need
51
- # other resources, package them into a resources jar.
52
5
jvm =true
53
- #
54
- # 'classname': the name of the class to load, fully-qualified.
55
6
classname =org.elasticsearch.plugin.readonlyrest.ReadonlyRestPlugin
56
- #
57
- # 'java.version' version of java the code is built against
58
7
java.version =1.7
59
- #
60
- # 'elasticsearch.version' version of elasticsearch compiled against
61
- elasticsearch.version =2.0.0
62
- #
63
- # ## deprecated elements for jvm plugins :
64
- #
65
- # 'isolated': true if the plugin should have its own classloader.
66
- # passing false is deprecated, and only intended to support plugins
67
- # that have hard dependencies against each other. If this is
68
- # not specified, then the plugin is isolated by default.
8
+ elasticsearch.version =2.1.0
69
9
isolated =false
70
- #
0 commit comments