We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2efcde commit 1d9b30aCopy full SHA for 1d9b30a
build.gradle
@@ -64,6 +64,7 @@ dependencies {
64
implementation libs.logback
65
implementation libs.jacksonDatabind
66
67
+ testImplementation platform(libs.junitBom)
68
testImplementation 'org.junit.jupiter:junit-jupiter'
69
testImplementation libs.assertj
70
testImplementation libs.archunit
dependencies.gradle
@@ -8,10 +8,6 @@ def VERSIONS = [
8
libs.wiremock,
9
]
10
11
-def PLATFORM_VERSIONS = [
12
- libs.junitBom
13
-]
14
-
15
subprojects {
16
plugins.withId('java-library') {
17
dependencies {
@@ -25,11 +21,6 @@ subprojects {
25
21
runtimeOnly version
26
22
}
27
23
28
- (PLATFORM_VERSIONS).each { bom ->
29
- api platform(bom)
30
- compileOnly platform(bom)
31
- runtimeOnly platform(bom)
32
- }
33
24
34
35
0 commit comments