Skip to content

Commit e7e1d98

Browse files
vamsimanoharclaude
andauthored
Fix pitest dependency resolution by using stable runtime version (opensearch-project#5143)
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. Signed-off-by: Vamsi Manohar <reddyvam@amazon.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b4df010 commit e7e1d98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ repositories {
3838

3939
pitest {
4040
targetClasses = ['org.opensearch.sql.*']
41-
pitestVersion = '1.19.0-rc.2'
41+
pitestVersion = '1.22.1'
4242
threads = 4
4343
outputFormats = ['HTML', 'XML']
4444
timestampedReports = false
45-
junit5PluginVersion = '1.0.0'
45+
junit5PluginVersion = '1.2.1'
4646
}
4747

4848
dependencies {

0 commit comments

Comments
 (0)