From 5b9b918b4c83d5527575d410f82df6210e4a5703 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Mon, 5 Jun 2023 17:42:19 +0200 Subject: [PATCH 1/3] Update dependencies (#487) - update dependencies which don't need code rework - introduce some version variables for easier maintaining --- build.gradle | 14 ++++++++++++++ metafacture-biblio/build.gradle | 4 ++-- metafacture-commons/build.gradle | 2 +- metafacture-csv/build.gradle | 6 +++--- metafacture-elasticsearch/build.gradle | 6 +++--- metafacture-flowcontrol/build.gradle | 10 +++++----- metafacture-flux/build.gradle | 2 +- metafacture-formeta/build.gradle | 4 ++-- metafacture-framework/build.gradle | 4 ++-- metafacture-html/build.gradle | 14 +++++++------- metafacture-io/build.gradle | 11 ++++++----- metafacture-javaintegration/build.gradle | 4 ++-- metafacture-jdom/build.gradle | 2 +- metafacture-json/build.gradle | 16 ++++++++-------- metafacture-linkeddata/build.gradle | 4 ++-- metafacture-mangling/build.gradle | 4 ++-- metafacture-monitoring/build.gradle | 8 ++++---- metafacture-plumbing/build.gradle | 4 ++-- metafacture-runner/build.gradle | 2 +- metafacture-statistics/build.gradle | 4 ++-- metafacture-strings/build.gradle | 4 ++-- metafacture-triples/build.gradle | 4 ++-- metafacture-xml/build.gradle | 10 +++++----- metafacture-yaml/build.gradle | 7 ++++--- metamorph-test/build.gradle | 8 ++++---- metamorph/build.gradle | 8 ++++---- 26 files changed, 91 insertions(+), 75 deletions(-) diff --git a/build.gradle b/build.gradle index bc2c98bef..49be7a94b 100644 --- a/build.gradle +++ b/build.gradle @@ -23,6 +23,20 @@ plugins { id 'io.codearte.nexus-staging' version '0.11.0' } +subprojects { + ext { + versions = [ + 'assertj_core': '3.11.1', + 'commons_compress': '1.21', + 'jackson_databind': '2.15.1', + 'junit': '4.12', + 'mockito': '2.5.7', + 'slf4j': '1.7.36', + 'wiremock_jre': '2.35.0' + ] + } +} + ext.scmInfo = getScmInfo() allprojects { diff --git a/metafacture-biblio/build.gradle b/metafacture-biblio/build.gradle index 5eaa94310..b1326088a 100644 --- a/metafacture-biblio/build.gradle +++ b/metafacture-biblio/build.gradle @@ -27,6 +27,6 @@ dependencies { exclude group: 'xercesImpl', module: 'xercesImpl' exclude group: 'xml-apis', module: 'xml-apis' } - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-commons/build.gradle b/metafacture-commons/build.gradle index b8204e2a8..d4df51d15 100644 --- a/metafacture-commons/build.gradle +++ b/metafacture-commons/build.gradle @@ -18,5 +18,5 @@ ext.mavenName = 'Metafacture Commons' description = 'Basic types, algorithms and utilities for Metafacture' dependencies { - testImplementation 'junit:junit:4.12' + testImplementation "junit:junit:${versions.junit}" } diff --git a/metafacture-csv/build.gradle b/metafacture-csv/build.gradle index 1a38e407f..8d7d743b5 100644 --- a/metafacture-csv/build.gradle +++ b/metafacture-csv/build.gradle @@ -19,7 +19,7 @@ description = 'Modules for processing comma-separated values' dependencies { api project(':metafacture-framework') - implementation 'com.opencsv:opencsv:3.8' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + implementation 'com.opencsv:opencsv:3.9' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-elasticsearch/build.gradle b/metafacture-elasticsearch/build.gradle index 64b80bc44..efa700e85 100644 --- a/metafacture-elasticsearch/build.gradle +++ b/metafacture-elasticsearch/build.gradle @@ -19,7 +19,7 @@ description = 'Modules for sending data to an Elasticsearch instance' dependencies { api project(':metafacture-framework') - implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}" + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-flowcontrol/build.gradle b/metafacture-flowcontrol/build.gradle index e9ac4e3a1..33ae55e20 100644 --- a/metafacture-flowcontrol/build.gradle +++ b/metafacture-flowcontrol/build.gradle @@ -19,9 +19,9 @@ description = 'Modules for controlling the data flow in a Metafacture pipeline' dependencies { api project(':metafacture-framework') - implementation 'org.slf4j:slf4j-api:1.7.21' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testImplementation 'org.assertj:assertj-core:3.11.1' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testImplementation "org.assertj:assertj-core:${versions.assertj_core}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-flux/build.gradle b/metafacture-flux/build.gradle index 14dda1402..ca94bff8c 100644 --- a/metafacture-flux/build.gradle +++ b/metafacture-flux/build.gradle @@ -25,5 +25,5 @@ dependencies { implementation project(':metafacture-io') testRuntime project(':metafacture-plumbing') antlr 'org.antlr:antlr:3.5.2' - testImplementation 'junit:junit:4.12' + testImplementation "junit:junit:${versions.junit}" } diff --git a/metafacture-formeta/build.gradle b/metafacture-formeta/build.gradle index 04edcae1a..46182edbd 100644 --- a/metafacture-formeta/build.gradle +++ b/metafacture-formeta/build.gradle @@ -20,6 +20,6 @@ description = 'Modules for reading and writing data in Formeta format' dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-framework/build.gradle b/metafacture-framework/build.gradle index 25c33c7e6..59accafce 100644 --- a/metafacture-framework/build.gradle +++ b/metafacture-framework/build.gradle @@ -18,6 +18,6 @@ ext.mavenName = 'Metafacture Framework' description = 'The interfaces implemented by Metafacture modules' dependencies { - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-html/build.gradle b/metafacture-html/build.gradle index a076e3371..fb3c3f7be 100644 --- a/metafacture-html/build.gradle +++ b/metafacture-html/build.gradle @@ -20,11 +20,11 @@ description = 'Modules for processing HTML documents' dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - implementation 'org.slf4j:slf4j-api:1.7.21' - implementation 'org.apache.commons:commons-compress:1.21' - implementation 'commons-io:commons-io:2.6' - implementation 'org.jsoup:jsoup:1.12.1' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + implementation "org.apache.commons:commons-compress:${versions.commons_compress}" + implementation 'commons-io:commons-io:2.7' + implementation 'org.jsoup:jsoup:1.15.4' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-io/build.gradle b/metafacture-io/build.gradle index e9947499a..e34ae6f81 100644 --- a/metafacture-io/build.gradle +++ b/metafacture-io/build.gradle @@ -21,11 +21,12 @@ dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') implementation 'commons-io:commons-io:2.5' - implementation 'org.apache.commons:commons-compress:1.21' + implementation "org.apache.commons:commons-compress:${versions.commons_compress}" runtimeOnly 'org.tukaani:xz:1.6' testImplementation 'com.github.tomakehurst:wiremock-jre8:2.33.2' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testImplementation 'org.assertj:assertj-core:3.11.1' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testImplementation "org.assertj:assertj-core:${versions.assertj_core}" + testRuntimeOnly "org.slf4j:slf4j-api:${versions.slf4j}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-javaintegration/build.gradle b/metafacture-javaintegration/build.gradle index a6c35d8fc..1e01e4fd1 100644 --- a/metafacture-javaintegration/build.gradle +++ b/metafacture-javaintegration/build.gradle @@ -20,6 +20,6 @@ description = 'Modules for making results of Metafacture pipelines available in dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-jdom/build.gradle b/metafacture-jdom/build.gradle index f78e4a8d5..356540441 100644 --- a/metafacture-jdom/build.gradle +++ b/metafacture-jdom/build.gradle @@ -19,6 +19,6 @@ description = 'Modules for converting JDOM documents to Metafacture streams and dependencies { api project(':metafacture-framework') - api 'org.jdom:jdom2:2.0.6' + api 'org.jdom:jdom2:2.0.6.1' implementation project(':metafacture-commons') } diff --git a/metafacture-json/build.gradle b/metafacture-json/build.gradle index 01a5b23a7..2d68433f0 100644 --- a/metafacture-json/build.gradle +++ b/metafacture-json/build.gradle @@ -19,12 +19,12 @@ description = 'Modules for processing JSON data in Metafacture' dependencies { api project(':metafacture-framework') - implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0' - implementation 'com.jayway.jsonpath:json-path:2.6.0' - implementation 'com.github.erosb:everit-json-schema:1.14.1' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testImplementation 'com.github.tomakehurst:wiremock-jre8:2.33.2' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2' + implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}" + implementation 'com.jayway.jsonpath:json-path:2.7.0' + implementation 'com.github.erosb:everit-json-schema:1.14.2' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testImplementation "com.github.tomakehurst:wiremock-jre8:${versions.wiremock_jre}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-linkeddata/build.gradle b/metafacture-linkeddata/build.gradle index fdb923540..b4320fb9b 100644 --- a/metafacture-linkeddata/build.gradle +++ b/metafacture-linkeddata/build.gradle @@ -20,6 +20,6 @@ description = 'Modules for working with linked data formats' dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-mangling/build.gradle b/metafacture-mangling/build.gradle index ed003d105..6aadcff80 100644 --- a/metafacture-mangling/build.gradle +++ b/metafacture-mangling/build.gradle @@ -20,6 +20,6 @@ description = 'Modules for manipulating the sequence of events in a Metafacture dependencies { api project(':metafacture-framework') implementation project(':metafacture-flowcontrol') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-monitoring/build.gradle b/metafacture-monitoring/build.gradle index c41504b92..840e0b46d 100644 --- a/metafacture-monitoring/build.gradle +++ b/metafacture-monitoring/build.gradle @@ -20,8 +20,8 @@ description = 'Modules for monitoring Metafacure streams' dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - implementation 'org.slf4j:slf4j-api:1.7.21' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-plumbing/build.gradle b/metafacture-plumbing/build.gradle index f5e66fa17..a599de40a 100644 --- a/metafacture-plumbing/build.gradle +++ b/metafacture-plumbing/build.gradle @@ -19,6 +19,6 @@ description = 'Modules for splitting and merging Metafacture pipelines' dependencies { api project(':metafacture-framework') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-runner/build.gradle b/metafacture-runner/build.gradle index 55eac9bad..a3b1efc83 100644 --- a/metafacture-runner/build.gradle +++ b/metafacture-runner/build.gradle @@ -67,7 +67,7 @@ dependencies { // class loader which was used to load the classes of the slf4j-api. Until // a solution is found for this problem, the binding need to be placed on the // class path: - runtimeOnly 'org.slf4j:slf4j-log4j12:1.7.21' + runtimeOnly "org.slf4j:slf4j-log4j12:${versions.slf4j}" // The following dependencies are placed in the "provided" scope to prevent // them from being included in the class path but still have them available diff --git a/metafacture-statistics/build.gradle b/metafacture-statistics/build.gradle index f24b1bbe5..970eb0686 100644 --- a/metafacture-statistics/build.gradle +++ b/metafacture-statistics/build.gradle @@ -19,6 +19,6 @@ description = 'Modules for computing statistics' dependencies { api project(':metafacture-framework') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-strings/build.gradle b/metafacture-strings/build.gradle index a9f72cf81..42764578e 100644 --- a/metafacture-strings/build.gradle +++ b/metafacture-strings/build.gradle @@ -19,6 +19,6 @@ description = 'Modules for performing string operations on a Metafacture stream' dependencies { api project(':metafacture-framework') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-triples/build.gradle b/metafacture-triples/build.gradle index 821d2e18a..5454691dd 100644 --- a/metafacture-triples/build.gradle +++ b/metafacture-triples/build.gradle @@ -21,6 +21,6 @@ dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') implementation project(':metafacture-formeta') - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } diff --git a/metafacture-xml/build.gradle b/metafacture-xml/build.gradle index c2bd2c255..29d9d8a66 100644 --- a/metafacture-xml/build.gradle +++ b/metafacture-xml/build.gradle @@ -20,9 +20,9 @@ description = 'Modules for generic operations on XML documents' dependencies { api project(':metafacture-framework') implementation project(':metafacture-commons') - implementation 'org.slf4j:slf4j-api:1.7.21' - implementation 'org.apache.commons:commons-compress:1.21' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + implementation "org.apache.commons:commons-compress:${versions.commons_compress}" + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metafacture-yaml/build.gradle b/metafacture-yaml/build.gradle index 293fa37c5..d34635136 100644 --- a/metafacture-yaml/build.gradle +++ b/metafacture-yaml/build.gradle @@ -19,7 +19,8 @@ description = 'Modules for processing YAML data in Metafacture' dependencies { api project(':metafacture-framework') - implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.0' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' + implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.1' + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" + testRuntimeOnly "org.slf4j:slf4j-api:${versions.slf4j}" } diff --git a/metamorph-test/build.gradle b/metamorph-test/build.gradle index a058fef4d..6465aa7dc 100644 --- a/metamorph-test/build.gradle +++ b/metamorph-test/build.gradle @@ -18,7 +18,7 @@ ext.mavenName = 'Metamorph Test' description = 'A framework writing tests for Metamorph scripts in XML' dependencies { - api 'junit:junit:4.12' + api "junit:junit:${versions.junit}" implementation project(':metafacture-framework') implementation project(':metafacture-commons') implementation project(':metamorph') @@ -28,8 +28,8 @@ dependencies { implementation project(':metafacture-formeta') implementation project(':metafacture-xml') implementation project(':metafacture-javaintegration') - implementation 'org.slf4j:slf4j-api:1.7.21' - testImplementation 'org.mockito:mockito-core:2.5.5' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" testImplementation project(':metafacture-formeta') - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" } diff --git a/metamorph/build.gradle b/metamorph/build.gradle index 0f57ceea3..6e3da7ecc 100644 --- a/metamorph/build.gradle +++ b/metamorph/build.gradle @@ -25,10 +25,10 @@ dependencies { implementation project(':metafacture-io') implementation project(':metafacture-mangling') implementation project(':metafacture-javaintegration') - implementation 'org.slf4j:slf4j-api:1.7.21' - testImplementation 'junit:junit:4.12' - testImplementation 'org.mockito:mockito-core:2.5.5' - testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21' + implementation "org.slf4j:slf4j-api:${versions.slf4j}" + testImplementation "org.slf4j:slf4j-simple:${versions.slf4j}" + testImplementation "junit:junit:${versions.junit}" + testImplementation "org.mockito:mockito-core:${versions.mockito}" } sourceSets { From 8ec34cc2b413cdfa0b3315af8344f7ab8af85849 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Tue, 6 Jun 2023 10:56:57 +0200 Subject: [PATCH 2/3] Correct update of dependencies (#489) - don't align values - remove superflous slf4j-api - reset to testRuntimeOnly Complements 5b9b918b4c83d5527575d410f82df6210e4a5703. --- build.gradle | 8 ++++---- metafacture-yaml/build.gradle | 1 - metamorph/build.gradle | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 49be7a94b..6928ab50d 100644 --- a/build.gradle +++ b/build.gradle @@ -29,10 +29,10 @@ subprojects { 'assertj_core': '3.11.1', 'commons_compress': '1.21', 'jackson_databind': '2.15.1', - 'junit': '4.12', - 'mockito': '2.5.7', - 'slf4j': '1.7.36', - 'wiremock_jre': '2.35.0' + 'junit': '4.12', + 'mockito': '2.5.7', + 'slf4j': '1.7.36', + 'wiremock_jre': '2.35.0' ] } } diff --git a/metafacture-yaml/build.gradle b/metafacture-yaml/build.gradle index d34635136..1eda2f751 100644 --- a/metafacture-yaml/build.gradle +++ b/metafacture-yaml/build.gradle @@ -22,5 +22,4 @@ dependencies { implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.1' testImplementation "junit:junit:${versions.junit}" testImplementation "org.mockito:mockito-core:${versions.mockito}" - testRuntimeOnly "org.slf4j:slf4j-api:${versions.slf4j}" } diff --git a/metamorph/build.gradle b/metamorph/build.gradle index 6e3da7ecc..db8c80532 100644 --- a/metamorph/build.gradle +++ b/metamorph/build.gradle @@ -26,7 +26,7 @@ dependencies { implementation project(':metafacture-mangling') implementation project(':metafacture-javaintegration') implementation "org.slf4j:slf4j-api:${versions.slf4j}" - testImplementation "org.slf4j:slf4j-simple:${versions.slf4j}" + testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" testImplementation "junit:junit:${versions.junit}" testImplementation "org.mockito:mockito-core:${versions.mockito}" } From fd66002248f14072c341bf8bfc49e66b1ff5e860 Mon Sep 17 00:00:00 2001 From: Pascal Christoph Date: Tue, 6 Jun 2023 11:08:13 +0200 Subject: [PATCH 3/3] Correct update of dependencies (#489) Complements 8ec34cc2b413cdfa0b3315af8344f7ab8af85849. --- metafacture-io/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/metafacture-io/build.gradle b/metafacture-io/build.gradle index e34ae6f81..31ac6b890 100644 --- a/metafacture-io/build.gradle +++ b/metafacture-io/build.gradle @@ -27,6 +27,5 @@ dependencies { testImplementation "junit:junit:${versions.junit}" testImplementation "org.mockito:mockito-core:${versions.mockito}" testImplementation "org.assertj:assertj-core:${versions.assertj_core}" - testRuntimeOnly "org.slf4j:slf4j-api:${versions.slf4j}" testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}" }