Skip to content

Commit 16674fb

Browse files
committed
Update open-test-reporting to 0.2.0-M3
Fixes #4313.
1 parent 5596b9b commit 16674fb

File tree

5 files changed

+2
-10
lines changed

5 files changed

+2
-10
lines changed

.github/actions/run-gradle/action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,5 @@ runs:
2929
-Pjunit.develocity.predictiveTestSelection.enabled=true \
3030
-Pjunit.develocity.predictiveTestSelection.selectRemainingTests=${{ github.event_name != 'pull_request' }} \
3131
"-Dscan.value.GitHub job=${{ github.job }}" \
32-
--refresh-dependencies \
3332
javaToolchains \
3433
${{ inputs.arguments }}

.github/scripts/checkBuildReproducibility.sh

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ function calculate_checksums() {
1313
--no-build-cache \
1414
-Porg.gradle.java.installations.auto-download=false \
1515
-Dscan.tag.Reproducibility \
16-
--refresh-dependencies \
1716
clean \
1817
assemble
1918

documentation/documentation.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ tasks {
453453
project.sourceSets.named { it.startsWith("main") }.map { it.allJava.srcDirs }
454454
).asPath
455455
}))
456-
addStringOption("-add-modules", "info.picocli")
456+
addStringOption("-add-modules", "info.picocli,org.opentest4j.reporting.events")
457457
addOption(ModuleSpecificJavadocFileOption("-add-reads", mapOf(
458458
"org.junit.platform.console" to "info.picocli",
459459
"org.junit.platform.reporting" to "org.opentest4j.reporting.events",

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ log4j = "2.24.3"
1717
logback = "1.5.16"
1818
mockito = "5.15.2"
1919
opentest4j = "1.3.0"
20-
openTestReporting = "0.2.0-SNAPSHOT"
20+
openTestReporting = "0.2.0-M3"
2121
snapshotTests = "1.11.0"
2222
surefire = "3.5.2"
2323
xmlunit = "2.10.0"

settings.gradle.kts

-6
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ plugins {
1515
dependencyResolutionManagement {
1616
repositories {
1717
mavenCentral()
18-
// TODO Remove --refresh-dependencies from CI builds when no longer consuming snapshots
19-
maven(url = "https://oss.sonatype.org/content/repositories/snapshots") {
20-
mavenContent {
21-
snapshotsOnly()
22-
}
23-
}
2418
}
2519
}
2620

0 commit comments

Comments
 (0)