aboutsummaryrefslogtreecommitdiffstats
path: root/poi-integration/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-integration/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-integration/build.gradle')
-rw-r--r--poi-integration/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle
index 0318c2f7af..3dd62c2e44 100644
--- a/poi-integration/build.gradle
+++ b/poi-integration/build.gradle
@@ -77,7 +77,9 @@ dependencies {
}
}
testImplementation project(path: ':poi-ooxml-lite-agent', configuration: 'archives')
- 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'
testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}"