25 lines
793 B
Groovy
25 lines
793 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
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
evaluationDependsOn(xpackModule('core'))
|
|
|
|
apply plugin: 'elasticsearch.internal-es-plugin'
|
|
|
|
esplugin {
|
|
name 'unsigned-long'
|
|
description 'Module for the unsigned long field type'
|
|
classname 'org.elasticsearch.xpack.unsignedlong.UnsignedLongMapperPlugin'
|
|
extendedPlugins = ['x-pack-core', 'lang-painless']
|
|
}
|
|
archivesBaseName = 'x-pack-unsigned-long'
|
|
|
|
dependencies {
|
|
compileOnly project(':modules:lang-painless:spi')
|
|
compileOnly project(path: xpackModule('core'))
|
|
testImplementation(testArtifact(project(xpackModule('core'))))
|
|
}
|