Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

plugin-descriptor.properties 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # 'description': simple summary of the plugin
  20. description=Module for ingest processors that do not require additional security permissions or have large dependencies and resources
  21. #
  22. # 'version': plugin's version
  23. version=6.8.0
  24. #
  25. # 'name': the plugin name
  26. name=ingest-common
  27. #
  28. # 'classname': the name of the class to load, fully-qualified.
  29. classname=org.elasticsearch.ingest.common.IngestCommonPlugin
  30. #
  31. # 'java.version': version of java the code is built against
  32. # use the system property java.specification.version
  33. # version string must be a sequence of nonnegative decimal integers
  34. # separated by "."'s and may have leading zeros
  35. java.version=1.8
  36. #
  37. # 'elasticsearch.version': version of elasticsearch compiled against
  38. elasticsearch.version=6.8.0
  39. ### optional elements for plugins:
  40. #
  41. # 'extended.plugins': other plugins this plugin extends through SPI
  42. extended.plugins=lang-painless
  43. #
  44. # 'has.native.controller': whether or not the plugin has a native controller
  45. has.native.controller=false