This is an automated email from the ASF dual-hosted git repository. reschke pushed a commit to branch 1.22 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 8a960f289d24c05c37dd8e27d78ab65ae0d4edb7 Author: mbaedke <[email protected]> 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 4f4c8f5401..1475103827 100644 --- a/oak-run/pom.xml +++ b/oak-run/pom.xml @@ -293,6 +293,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>com.h2database</groupId> <artifactId>h2</artifactId>
