aboutsummaryrefslogtreecommitdiffstats
path: root/poi-excelant/build.gradle
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-09-01 22:32:48 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-09-01 22:32:48 +0000
commit5c6493a5fc76f2e11441d39af05e3f3208283896 (patch)
treea6e806672bf04201688e641e10a23ca9d712ef18 /poi-excelant/build.gradle
parent7adf9c26b799f1323f77a5c80f463b5fe2a7f2a6 (diff)
downloadpoi-5c6493a5fc76f2e11441d39af05e3f3208283896.tar.gz
poi-5c6493a5fc76f2e11441d39af05e3f3208283896.zip
try to fix no-scratchpad build
remove or set-to-static scratchpad dependency from modules git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892795 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-excelant/build.gradle')
-rw-r--r--poi-excelant/build.gradle7
1 files changed, 3 insertions, 4 deletions
diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle
index ee7cd664c0..e22a80f1f2 100644
--- a/poi-excelant/build.gradle
+++ b/poi-excelant/build.gradle
@@ -38,14 +38,13 @@ dependencies {
api 'org.apache.ant:ant:1.10.9'
api project(':poi-ooxml')
- api project(':poi-scratchpad')
api project(path: ':poi-ooxml', configuration: 'archives')
- api project(path: ':poi-scratchpad', configuration: 'archives')
testImplementation project(path: ':poi-ooxml-lite-agent', configuration: 'archives')
testImplementation project(path: ':poi', configuration: 'tests')
- testImplementation project(path: ':poi-ooxml', configuration: 'tests')
- testImplementation project(path: ':poi-scratchpad', configuration: 'tests')
+ testImplementation(project(path: ':poi-ooxml', configuration: 'tests')) {
+ exclude group: 'org.apache.poi', module: 'poi-scratchpad'
+ }
testImplementation 'com.google.guava:guava:30.0-jre'
testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
}