Rory Hunter 43762f69d1
Move deprecation HTTP tests to deprecation plugin (#60523)
Backport of #60298.

This PR moves the deprecation HTTP tests under the deprecation plugin, as a precursor to
adding further tests as part of #58924.
2020-08-05 09:54:34 +01:00

17 lines
426 B
Groovy

apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.internal-cluster-test'
esplugin {
name 'x-pack-deprecation'
description 'Elasticsearch Expanded Pack Plugin - Deprecation'
classname 'org.elasticsearch.xpack.deprecation.Deprecation'
extendedPlugins = ['x-pack-core']
}
archivesBaseName = 'x-pack-deprecation'
dependencies {
compileOnly project(":x-pack:plugin:core")
}
integTest.enabled = false