Skip to content

Commit 1d9b30a

Browse files
Fixed issues with JUnit5
1 parent f2efcde commit 1d9b30a

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ dependencies {
6464
implementation libs.logback
6565
implementation libs.jacksonDatabind
6666

67+
testImplementation platform(libs.junitBom)
6768
testImplementation 'org.junit.jupiter:junit-jupiter'
6869
testImplementation libs.assertj
6970
testImplementation libs.archunit

dependencies.gradle

-9
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ def VERSIONS = [
88
libs.wiremock,
99
]
1010

11-
def PLATFORM_VERSIONS = [
12-
libs.junitBom
13-
]
14-
1511
subprojects {
1612
plugins.withId('java-library') {
1713
dependencies {
@@ -25,11 +21,6 @@ subprojects {
2521
runtimeOnly version
2622
}
2723
}
28-
(PLATFORM_VERSIONS).each { bom ->
29-
api platform(bom)
30-
compileOnly platform(bom)
31-
runtimeOnly platform(bom)
32-
}
3324
}
3425
}
3526
}

0 commit comments

Comments
 (0)