From 429698f5086f2880347fbf57836baf68e873c59b Mon Sep 17 00:00:00 2001 From: Thad House Date: Sat, 25 Oct 2025 23:02:09 -0700 Subject: [PATCH] [build] Fix deprecated gradle warning in catch2 publish.gradle (#8305) --- thirdparty/catch2/publish.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thirdparty/catch2/publish.gradle b/thirdparty/catch2/publish.gradle index 660b6b80fe..d845290f5b 100644 --- a/thirdparty/catch2/publish.gradle +++ b/thirdparty/catch2/publish.gradle @@ -54,8 +54,8 @@ model { artifact cppSourcesZip artifactId = baseArtifactId - groupId artifactGroupId - version wpilibVersioning.version.get() + groupId = artifactGroupId + version = wpilibVersioning.version.get() } } }