48 lines
1.5 KiB
Properties
48 lines
1.5 KiB
Properties
# Elasticsearch plugin descriptor file
|
|
# This file must exist as 'plugin-descriptor.properties' at
|
|
# the root directory of all plugins.
|
|
#
|
|
### example plugin for "foo"
|
|
#
|
|
# foo.zip <-- zip file for the plugin, with this structure:
|
|
# <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=The S3 repository plugin adds S3 repositories.
|
|
#
|
|
# 'version': plugin's version
|
|
version=3.0.0-SNAPSHOT
|
|
#
|
|
# 'name': the plugin name
|
|
name=repository-s3
|
|
#
|
|
# 'classname': the name of the class to load, fully-qualified.
|
|
classname=org.elasticsearch.plugin.repository.s3.S3RepositoryPlugin
|
|
#
|
|
# '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=3.0.0-SNAPSHOT
|
|
#
|
|
### deprecated elements for jvm plugins :
|
|
#
|
|
# 'isolated': true if the plugin should have its own classloader.
|
|
# passing false is deprecated, and only intended to support plugins
|
|
# that have hard dependencies against each other. If this is
|
|
# not specified, then the plugin is isolated by default.
|
|
isolated=true
|
|
# |