25 lines
878 B
Groovy
25 lines
878 B
Groovy
|
/*
|
||
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||
|
* or more contributor license agreements. Licensed under the Elastic License;
|
||
|
* you may not use this file except in compliance with the Elastic License.
|
||
|
*/
|
||
|
|
||
|
evaluationDependsOn(xpackModule('core'))
|
||
|
|
||
|
apply plugin: 'elasticsearch.esplugin'
|
||
|
|
||
|
esplugin {
|
||
|
name 'constant-keyword'
|
||
|
description 'Module for the constant-keyword field type, which is a specialization of keyword for the case when all documents have the same value.'
|
||
|
classname 'org.elasticsearch.xpack.constantkeyword.ConstantKeywordMapperPlugin'
|
||
|
extendedPlugins = ['x-pack-core']
|
||
|
}
|
||
|
archivesBaseName = 'x-pack-constant-keyword'
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
||
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||
|
}
|
||
|
|
||
|
integTest.enabled = false
|