mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
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.
8 lines
140 B
Groovy
8 lines
140 B
Groovy
plugins {
|
|
id 'elasticsearch.java'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':server')
|
|
testImplementation project(':test:framework')
|
|
}
|