Align version field plugin naming (#62757)

To better align the plugin naming with other mapper plugins under x-pack (e.g.
mapper-flattened) this PR changes the plugin name and the containing directory
to "mapper-version"
This commit is contained in:
Christoph Büscher 2020-09-23 11:14:41 +02:00
parent 29074e7055
commit 054a950ceb
13 changed files with 2 additions and 2 deletions

View File

@ -4,12 +4,12 @@ apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.internal-cluster-test'
esplugin {
name 'versionfield'
name 'mapper-version'
description 'A plugin for a field type to store sofware versions'
classname 'org.elasticsearch.xpack.versionfield.VersionFieldPlugin'
extendedPlugins = ['x-pack-core', 'lang-painless']
}
archivesBaseName = 'x-pack-versionfield'
archivesBaseName = 'x-pack-mapper-version'
dependencies {
compileOnly project(path: xpackModule('core'), configuration: 'default')