aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml/build.gradle
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-09-13 11:26:51 +0000
committerPJ Fanning <fanningpj@apache.org>2022-09-13 11:26:51 +0000
commite694cf4d534bb09d2a706f390db49e6e779dfa2b (patch)
tree7e9427172ed6a2f3b3fde387767b0aefc76b6d7d /poi-ooxml/build.gradle
parentfee2c2a11eb0e92f1f9ddf2278fbc01a8eabef7f (diff)
downloadpoi-e694cf4d534bb09d2a706f390db49e6e779dfa2b.tar.gz
poi-e694cf4d534bb09d2a706f390db49e6e779dfa2b.zip
try to fix hamcrest module issue affecting poi-ooxml test compile
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1904045 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml/build.gradle')
-rw-r--r--poi-ooxml/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle
index f8dad94e98..8b0ca8515a 100644
--- a/poi-ooxml/build.gradle
+++ b/poi-ooxml/build.gradle
@@ -144,7 +144,9 @@ dependencies {
// prevent slf4j warnings coming from xmlsec -> slf4j-api 1.7.x dependency
// see https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/
- testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}"
+ testImplementation ("org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}") {
+ exclude group: 'org.hamcrest', module: 'hamcrest-core'
+ }
testImplementation 'org.slf4j:slf4j-simple:2.0.0'
if (SAXON_TEST) {