elasticsearch/test/metadata-extractor/build.gradle
Mark Vieira 5d379626df
Expose historical feature metadata to rest tests (#102110)
This introduces a new getHistoricalFeatures() method on ESRestTestCase
which returns a map of historical feature version mappings loaded from
FeatureSpecification implementations from any plugins/modules in use
by the current test suite. The mappings are generated by a new Gradle
task at build time, and then injected into the test runtime as a
System property.
2023-11-14 10:38:33 -08:00

8 lines
140 B
Groovy

plugins {
id 'elasticsearch.java'
}
dependencies {
implementation project(':server')
testImplementation project(':test:framework')
}