From 2d997704cf2d446c6fa7865f3fc09e9f4954eed9 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Jun 2026 15:40:14 +0000 Subject: [PATCH 1/2] Replace deprecated PMD rule `GenericsNaming` with `TypeParameterNamingConventions` PMD 7.25.0 deprecated `category/java/codestyle.xml/GenericsNaming` (scheduled for removal in PMD 8.0.0) in favour of `TypeParameterNamingConventions`, which enforces the same single uppercase-letter convention for type parameters by default. The `pmdMain` task printed a deprecation warning for the rule; switching to the successor clears it. https://claude.ai/code/session_014TVLouXfDWCg1sTQVW3ssM --- buildSrc/quality/pmd.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/quality/pmd.xml b/buildSrc/quality/pmd.xml index 1d49f901..5e0e88e3 100644 --- a/buildSrc/quality/pmd.xml +++ b/buildSrc/quality/pmd.xml @@ -1,7 +1,7 @@