From a949774edb01108e1c00f142017efc24c512fc83 Mon Sep 17 00:00:00 2001 From: Vamsi Manohar Date: Fri, 13 Feb 2026 14:45:44 -0800 Subject: [PATCH] Fix pitest dependency resolution by using stable runtime version The pitest RC runtime artifacts (pitest-command-line:1.19.0-rc.2) are not published to Maven Central, causing dependency resolution failures. Update pitestVersion to 1.22.1 (latest stable) and junit5PluginVersion to 1.2.1 while keeping the Gradle plugin at 1.19.0-rc.2 for Gradle 9 compatibility. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Vamsi Manohar --- core/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/build.gradle b/core/build.gradle index 6dcd0b9e1f..23f9b37e31 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -38,11 +38,11 @@ repositories { pitest { targetClasses = ['org.opensearch.sql.*'] - pitestVersion = '1.19.0-rc.2' + pitestVersion = '1.22.1' threads = 4 outputFormats = ['HTML', 'XML'] timestampedReports = false - junit5PluginVersion = '1.0.0' + junit5PluginVersion = '1.2.1' } dependencies {