This is an automated email from the ASF dual-hosted git repository.
vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new c3a1e0dcab chore: fix annotationProcessorOptionProviders deprecation
warning
c3a1e0dcab is described below
commit c3a1e0dcabd079698579e784714c1333b9c7b831
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Thu Oct 30 15:19:07 2025 +0300
chore: fix annotationProcessorOptionProviders deprecation warning
---
src/test-services/build.gradle.kts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test-services/build.gradle.kts
b/src/test-services/build.gradle.kts
index 24a4319b87..f7d9c72a1b 100644
--- a/src/test-services/build.gradle.kts
+++ b/src/test-services/build.gradle.kts
@@ -30,7 +30,7 @@ dependencies {
tasks.configureEach<Kapt> {
// ServiceNotImplementingInterface does not implement the service
interface for testing purposes,
// so we disable AutoService verifications
- annotationProcessorOptionProviders.add(
- listOf(CommandLineArgumentProvider { listOf("-Averify=false") })
+ annotationProcessorOptionsProviders.add(
+ CommandLineArgumentProvider { listOf("-Averify=false") }
)
}