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
This commit is contained in:
Rene Groeschke 2024-12-30 15:34:24 +01:00 committed by GitHub
parent d7fa7405d4
commit ba61f8c7f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
162 changed files with 4434 additions and 474 deletions

View file

@ -10,11 +10,11 @@ apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'
esplugin {
name 'custom-processor'
description 'An example plugin showing how to register a custom ingest processor'
classname 'org.elasticsearch.example.customprocessor.ExampleProcessorPlugin'
licenseFile rootProject.file('AGPL-3.0+SSPL-1.0+ELASTIC-LICENSE-2.0.txt')
noticeFile rootProject.file('NOTICE.txt')
name = 'custom-processor'
description = 'An example plugin showing how to register a custom ingest processor'
classname ='org.elasticsearch.example.customprocessor.ExampleProcessorPlugin'
licenseFile = rootProject.file('AGPL-3.0+SSPL-1.0+ELASTIC-LICENSE-2.0.txt')
noticeFile = rootProject.file('NOTICE.txt')
}
dependencies {