jw项目windows环境软件安装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.7 KiB

1 year ago
  1. # Elasticsearch plugin descriptor file
  2. # This file must exist as 'plugin-descriptor.properties' inside a plugin.
  3. #
  4. ### example plugin for "foo"
  5. #
  6. # foo.zip <-- zip file for the plugin, with this structure:
  7. # |____ <arbitrary name1>.jar <-- classes, resources, dependencies
  8. # |____ <arbitrary nameN>.jar <-- any number of jars
  9. # |____ plugin-descriptor.properties <-- example contents below:
  10. #
  11. # classname=foo.bar.BazPlugin
  12. # description=My cool plugin
  13. # version=6.0
  14. # elasticsearch.version=6.0
  15. # java.version=1.8
  16. #
  17. ### mandatory elements for all plugins:
  18. #
  19. # 'type': the type of this plugin. 'isolated' indicated a typical sandboxed plugin,
  20. # whereas 'bootstrap' indicates a plugin whose jars are added to the JVM's boot
  21. # classpath.
  22. type=isolated
  23. #
  24. # 'description': simple summary of the plugin
  25. description=Elasticsearch Expanded Pack Plugin - Plugin exposing APIs for Fleet system indices
  26. #
  27. # 'version': plugin's version
  28. version=7.14.0
  29. #
  30. # 'name': the plugin name
  31. name=x-pack-fleet
  32. #
  33. # 'classname': the name of the class to load, fully-qualified. Only applies to
  34. # "isolated" plugins
  35. classname=org.elasticsearch.xpack.fleet.Fleet
  36. #
  37. # 'java.version': version of java the code is built against
  38. # use the system property java.specification.version
  39. # version string must be a sequence of nonnegative decimal integers
  40. # separated by "."'s and may have leading zeros
  41. java.version=1.8
  42. #
  43. # 'elasticsearch.version': version of elasticsearch compiled against
  44. elasticsearch.version=7.14.0
  45. ### optional elements for plugins:
  46. #
  47. # 'extended.plugins': other plugins this plugin extends through SPI
  48. extended.plugins=x-pack-core
  49. #
  50. # 'has.native.controller': whether or not the plugin has a native controller
  51. has.native.controller=false