File tree 4 files changed +9
-1
lines changed
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 29
29
-Pjunit.develocity.predictiveTestSelection.enabled=true \
30
30
-Pjunit.develocity.predictiveTestSelection.selectRemainingTests=${{ github.event_name != 'pull_request' }} \
31
31
"-Dscan.value.GitHub job=${{ github.job }}" \
32
+ --refresh-dependencies \
32
33
javaToolchains \
33
34
${{ inputs.arguments }}
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ function calculate_checksums() {
13
13
--no-build-cache \
14
14
-Porg.gradle.java.installations.auto-download=false \
15
15
-Dscan.tag.Reproducibility \
16
+ --refresh-dependencies \
16
17
clean \
17
18
assemble
18
19
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ log4j = "2.24.3"
17
17
logback = " 1.5.16"
18
18
mockito = " 5.15.2"
19
19
opentest4j = " 1.3.0"
20
- openTestReporting = " 0.2.0-M2 "
20
+ openTestReporting = " 0.2.0-SNAPSHOT "
21
21
snapshotTests = " 1.11.0"
22
22
surefire = " 3.5.2"
23
23
xmlunit = " 2.10.0"
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ plugins {
15
15
dependencyResolutionManagement {
16
16
repositories {
17
17
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
+ }
18
24
}
19
25
}
20
26
You can’t perform that action at this time.
0 commit comments