This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new c53c41881 TIKA-4417: fix dependency convergence error with
jackcess-encrypt (#2206)
c53c41881 is described below
commit c53c418810990ccbf84924fab09f116a0f79016a
Author: David Frizelle <[email protected]>
AuthorDate: Sun May 18 20:53:20 2025 +1000
TIKA-4417: fix dependency convergence error with jackcess-encrypt (#2206)
---
tika-parent/pom.xml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 61df9a033..756755470 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -709,9 +709,13 @@
<exclusions>
<!-- to avoid maven-enforcer convergence error,
let's make this explicit -->
+ <exclusion>
+ <groupId>com.healthmarketscience.jackcess</groupId>
+ <artifactId>jackcess</artifactId>
+ </exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
+ <artifactId>bcprov-jdk18on</artifactId>
</exclusion>
</exclusions>
</dependency>