Clarify opensearch.version to not include -SNAPSHOT. (#1186)

Signed-off-by: dblock <dblock@dblock.org>
This commit is contained in:
Daniel Doubrovkine (dB.) 2021-09-01 21:54:41 -04:00 committed by GitHub
parent 20c6f786ac
commit ecd9875e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ version=${version}
# 'name': the plugin name
name=${name}
#
# 'classname': the name of the class to load, fully-qualified.
# 'classname': the name of the class to load, fully-qualified
classname=${classname}
#
# 'java.version': version of java the code is built against
@ -45,14 +45,16 @@ classname=${classname}
# separated by "."'s and may have leading zeros
java.version=${javaVersion}
#
# 'opensearch.version': version of opensearch compiled against
# 'opensearch.version': semantic version of opensearch the plugin is compatible with
# does not include -SNAPSHOT if compiled against a snapshot build
opensearch.version=${opensearchVersion}
#
### optional elements for plugins:
#
# 'custom.foldername': the custom name of the folder in which the plugin is installed.
# 'custom.foldername': the custom name of the folder in which the plugin is installed
custom.foldername=${customFolderName}
#
# 'extended.plugins': other plugins this plugin extends through SPI
# 'extended.plugins': other plugins this plugin extends through SPI
extended.plugins=${extendedPlugins}
#
# 'has.native.controller': whether or not the plugin has a native controller