Нет описания

plugin-descriptor.properties 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Elasticsearch plugin descriptor file
  2. # This file must exist as 'plugin-descriptor.properties' at
  3. # the root directory of all plugins.
  4. #
  5. # A plugin can be 'site', 'jvm', or both.
  6. #
  7. ### example site plugin for "foo":
  8. #
  9. # foo.zip <-- zip file for the plugin, with this structure:
  10. # _site/ <-- the contents that will be served
  11. # plugin-descriptor.properties <-- example contents below:
  12. #
  13. # site=true
  14. # description=My cool plugin
  15. # version=1.0
  16. #
  17. ### example jvm plugin for "foo"
  18. #
  19. # foo.zip <-- zip file for the plugin, with this structure:
  20. # <arbitrary name1>.jar <-- classes, resources, dependencies
  21. # <arbitrary nameN>.jar <-- any number of jars
  22. # plugin-descriptor.properties <-- example contents below:
  23. #
  24. # jvm=true
  25. # classname=foo.bar.BazPlugin
  26. # description=My cool plugin
  27. # version=2.0.0-rc1
  28. # elasticsearch.version=2.0
  29. # java.version=1.7
  30. #
  31. ### mandatory elements for all plugins:
  32. #
  33. # 'description': simple summary of the plugin
  34. description=IK Analyzer for Elasticsearch
  35. #
  36. # 'version': plugin's version
  37. version=7.17.6
  38. #
  39. # 'name': the plugin name
  40. name=analysis-ik
  41. #
  42. # 'classname': the name of the class to load, fully-qualified.
  43. classname=org.elasticsearch.plugin.analysis.ik.AnalysisIkPlugin
  44. #
  45. # 'java.version' version of java the code is built against
  46. # use the system property java.specification.version
  47. # version string must be a sequence of nonnegative decimal integers
  48. # separated by "."'s and may have leading zeros
  49. java.version=1.8
  50. #
  51. # 'elasticsearch.version' version of elasticsearch compiled against
  52. # You will have to release a new version of the plugin for each new
  53. # elasticsearch release. This version is checked when the plugin
  54. # is loaded so Elasticsearch will refuse to start in the presence of
  55. # plugins with the incorrect elasticsearch.version.
  56. elasticsearch.version=7.17.6