This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch branch_3x
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/branch_3x by this push:
new 9a683e136 TIKA-4417: fix dependency convergence error with
jackcess-encrypt (#2206)
9a683e136 is described below
commit 9a683e136cb333fd04034d4313c64995bcef9634
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 38aed22bf..8bc930906 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -685,9 +685,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>