Skip to content

Commit c9b00b2

Browse files
fix: spotless
1 parent 947a52d commit c9b00b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dd-java-agent/instrumentation/junit/junit-5.3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ configurations.matching { it.name.startsWith('latest5Test') || it.name.startsWit
7070
it.resolutionStrategy.componentSelection.all { ComponentSelection selection ->
7171
def version = selection.candidate.version
7272
if ((selection.candidate.group == 'org.junit.platform' || selection.candidate.group == 'org.junit.jupiter') &&
73-
(version.matches('.*-RC.*') || version.matches('.*-M\\d+.*'))) {
73+
(version.matches('.*-RC.*') || version.matches('.*-M\\d+.*'))) {
7474
selection.reject("Skipping pre-release version: ${version}")
7575
}
7676
}

dd-java-agent/instrumentation/junit/junit-5.3/junit-5.8/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ configurations.matching { it.name.startsWith('latestDepTest') }.configureEach {
6262
it.resolutionStrategy.componentSelection.all { ComponentSelection selection ->
6363
def version = selection.candidate.version
6464
if ((selection.candidate.group == 'org.junit.platform' || selection.candidate.group == 'org.junit.jupiter') &&
65-
(version.matches('.*-RC.*') || version.matches('.*-M\\d+.*'))) {
65+
(version.matches('.*-RC.*') || version.matches('.*-M\\d+.*'))) {
6666
selection.reject("Skipping pre-release version: ${version}")
6767
}
6868
}

0 commit comments

Comments
 (0)