elasticsearch/qa/logging-spi/build.gradle
Rene Groeschke ba61f8c7f7
Update Gradle wrapper to 8.12 (#118683)
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
2024-12-30 15:34:24 +01:00

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
}