This is an automated email from the ASF dual-hosted git repository. grossws pushed a commit to branch logging-refactoring in repository https://gitbox.apache.org/repos/asf/tika.git
commit 9fcc90a00ba22edf084712c5e5500b18a1b6cb24 Author: Konstantin Gribov <[email protected]> AuthorDate: Sun Nov 20 05:55:25 2022 +0300 fixup! Replace commons-logging with jcl-over-slf4j --- tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml b/tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml index 00154510f..0c1785e5c 100644 --- a/tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml +++ b/tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml @@ -84,6 +84,12 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> @@ -142,6 +148,11 @@ </exclusions> </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId>
