This is an automated email from the ASF dual-hosted git repository. baedke pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push: new c826eba270 OAK-10957: oak-run datastorecheck broken for AWS since 1.22.14 (#1819) c826eba270 is described below commit c826eba27020869aa3abcf2512cd363928c88de4 Author: mbaedke <manfred.bae...@gmail.com> AuthorDate: Thu Oct 24 14:04:23 2024 +0200 OAK-10957: oak-run datastorecheck broken for AWS since 1.22.14 (#1819) Added explicit compile dependency to commons-logging. --- oak-run/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/oak-run/pom.xml b/oak-run/pom.xml index ff542d2e3d..6b630142f8 100644 --- a/oak-run/pom.xml +++ b/oak-run/pom.xml @@ -323,6 +323,15 @@ <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> + <!-- OAK-10957: commons-logging is needed at runtime by com.amazonaws.AmazonWebServiceClient. + It used to be a compile dependency of Tika (so it was included by the assembly plugin as + a transitive dependency), but since Tike 1.28.5 it no longer is and needs to be added + here explicitly. --> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.3.4</version> + </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId>