-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathplugin-descriptor.properties
45 lines (45 loc) · 1.35 KB
/
plugin-descriptor.properties
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
41
42
43
44
45
# OpenSearch plugin descriptor file
# This file must exist as 'plugin-descriptor.properties' in a folder named `opensearch`
# inside all plugins.
#
#
# The file here is only for Brazil use
# For gradle OpenSearch, it will be defined in the build.gradle
#
#
### example plugin for "foo"
#
# foo.zip <-- zip file for the plugin, with this structure:
#|____opensearch/
#| |____ <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
# opensearch.version=2.0
# java.version=1.7
#
### mandatory elements for all plugins:
#
# 'description': simple summary of the plugin
description=Performance Analyzer Plugin
#
# 'version': plugin's version
version=1.3.20.0
#
# 'name': the plugin name
name=performance-analyzer
#
# 'classname': the name of the class to load, fully-qualified.
classname=org.opensearch.performanceanalyzer.PerformanceAnalyzerPlugin
#
# '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
#
# 'opensearch.version' version of openSearch compiled against
opensearch.version=1.3.20