mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
This updates the gradle wrapper to 8.12 We addressed deprecation warnings due to the update that includes: - Fix change in TestOutputEvent api - Fix deprecation in groovy syntax - Use latest ospackage plugin containing our fix - Remove project usages at execution time - Fix deprecated project references in repository-old-versions
18 lines
513 B
Groovy
18 lines
513 B
Groovy
|
|
apply plugin: 'elasticsearch.base-internal-es-plugin'
|
|
apply plugin: 'elasticsearch.internal-java-rest-test'
|
|
|
|
esplugin {
|
|
name = 'logging-spi-test'
|
|
description = 'An test plugin to test the SPI behaviour of ES logging'
|
|
classname ='org.elasticsearch.test.logging.plugin.TestLoggingPlugin'
|
|
}
|
|
|
|
dependencies {
|
|
clusterPlugins project(':qa:logging-spi')
|
|
}
|
|
|
|
tasks.named("javadoc").configure {
|
|
// There seems to be some problem generating javadoc on a QA project that has a module definition
|
|
enabled = false
|
|
}
|