Skip to content

Commit 8ec34cc

Browse files
committed
Correct update of dependencies (#489)
- don't align values - remove superflous slf4j-api - reset to testRuntimeOnly Complements 5b9b918.
1 parent 5b9b918 commit 8ec34cc

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ subprojects {
2929
'assertj_core': '3.11.1',
3030
'commons_compress': '1.21',
3131
'jackson_databind': '2.15.1',
32-
'junit': '4.12',
33-
'mockito': '2.5.7',
34-
'slf4j': '1.7.36',
35-
'wiremock_jre': '2.35.0'
32+
'junit': '4.12',
33+
'mockito': '2.5.7',
34+
'slf4j': '1.7.36',
35+
'wiremock_jre': '2.35.0'
3636
]
3737
}
3838
}

metafacture-yaml/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ dependencies {
2222
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.1'
2323
testImplementation "junit:junit:${versions.junit}"
2424
testImplementation "org.mockito:mockito-core:${versions.mockito}"
25-
testRuntimeOnly "org.slf4j:slf4j-api:${versions.slf4j}"
2625
}

metamorph/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
implementation project(':metafacture-mangling')
2727
implementation project(':metafacture-javaintegration')
2828
implementation "org.slf4j:slf4j-api:${versions.slf4j}"
29-
testImplementation "org.slf4j:slf4j-simple:${versions.slf4j}"
29+
testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}"
3030
testImplementation "junit:junit:${versions.junit}"
3131
testImplementation "org.mockito:mockito-core:${versions.mockito}"
3232
}

0 commit comments

Comments
 (0)