Update Gradle wrapper to 8.13 (#122421)

* Fix Gradle Deprecation warning as declaring an is- property with a Boolean type has been deprecated.
* Make use of new layout.settingsFolder api to address some cross project references
* Fix buildParams snapshot check for multiprojet projects
This commit is contained in:
Rene Groeschke 2025-03-03 14:10:00 +01:00 committed by GitHub
parent afff39ed5c
commit e19b2264af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 105 additions and 104 deletions

View file

@ -13,8 +13,8 @@ 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')
licenseFile = layout.settingsDirectory.file('AGPL-3.0+SSPL-1.0+ELASTIC-LICENSE-2.0.txt').asFile
noticeFile = layout.settingsDirectory.file('NOTICE.txt').asFile
}
dependencies {