Fix module and package names for stable plugin api (#89772)

the convention for packages and module names is:
org.elasticsearch.plugin[.analysis].api

module-info.java and package-info.java were using incorrect names
and not following the convention
relates #88980
This commit is contained in:
Przemyslaw Gomulka 2022-09-05 10:13:20 +02:00 committed by GitHub
parent 0302d2db2d
commit 2b6d4e97df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@
* Side Public License, v 1.
*/
module org.elasticsearch.analysis.plugin.api {
module org.elasticsearch.plugin.analysis.api {
requires org.apache.lucene.core;
requires org.elasticsearch.plugin.api;