aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties')
-rw-r--r--sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties40
1 files changed, 40 insertions, 0 deletions
diff --git a/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties
new file mode 100644
index 00000000000..b634de8bc40
--- /dev/null
+++ b/sonar-application/src/main/assembly/elasticsearch/modules/ingest-common/plugin-descriptor.properties
@@ -0,0 +1,40 @@
+# Elasticsearch plugin descriptor file
+# This file must exist as 'plugin-descriptor.properties' in a folder named `elasticsearch`
+# inside all plugins.
+#
+### example plugin for "foo"
+#
+# foo.zip <-- zip file for the plugin, with this structure:
+#|____elasticsearch/
+#| |____ <arbitrary name1>.jar <-- classes, resources, dependencies
+#| |____ <arbitrary nameN>.jar <-- any number of jars
+#| |____ plugin-descriptor.properties <-- example contents below:
+#
+# classname=foo.bar.BazPlugin
+# description=My cool plugin
+# version=2.0
+# elasticsearch.version=2.0
+# java.version=1.7
+#
+### mandatory elements for all plugins:
+#
+# 'description': simple summary of the plugin
+description=Module for ingest processors that do not require additional security permissions or have large dependencies and resources
+#
+# 'version': plugin's version
+version=5.0.2
+#
+# 'name': the plugin name
+name=ingest-common
+#
+# 'classname': the name of the class to load, fully-qualified.
+classname=org.elasticsearch.ingest.common.IngestCommonPlugin
+#
+# 'java.version' version of java the code is built against
+# use the system property java.specification.version
+# version string must be a sequence of nonnegative decimal integers
+# separated by "."'s and may have leading zeros
+java.version=1.8
+#
+# 'elasticsearch.version' version of elasticsearch compiled against
+elasticsearch.version=5.0.2