diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-09-01 22:32:48 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-09-01 22:32:48 +0000 |
commit | 5c6493a5fc76f2e11441d39af05e3f3208283896 (patch) | |
tree | a6e806672bf04201688e641e10a23ca9d712ef18 /poi-excelant | |
parent | 7adf9c26b799f1323f77a5c80f463b5fe2a7f2a6 (diff) | |
download | poi-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')
-rw-r--r-- | poi-excelant/build.gradle | 7 | ||||
-rw-r--r-- | poi-excelant/src/main/java9/module-info.java | 1 | ||||
-rw-r--r-- | poi-excelant/src/test/java9/module-info.java | 1 |
3 files changed, 3 insertions, 6 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' } diff --git a/poi-excelant/src/main/java9/module-info.java b/poi-excelant/src/main/java9/module-info.java index 43b64560a7..743b172ad1 100644 --- a/poi-excelant/src/main/java9/module-info.java +++ b/poi-excelant/src/main/java9/module-info.java @@ -19,7 +19,6 @@ module org.apache.poi.excelant { requires ant; requires org.apache.poi.ooxml; - requires org.apache.poi.scratchpad; exports org.apache.poi.ss.excelant; exports org.apache.poi.ss.excelant.util; diff --git a/poi-excelant/src/test/java9/module-info.java b/poi-excelant/src/test/java9/module-info.java index a26d9bd04d..97c40ae4b6 100644 --- a/poi-excelant/src/test/java9/module-info.java +++ b/poi-excelant/src/test/java9/module-info.java @@ -19,7 +19,6 @@ module org.apache.poi.excelant { requires ant; requires org.apache.poi.ooxml; - requires org.apache.poi.scratchpad; exports org.apache.poi.ss.excelant; exports org.apache.poi.ss.excelant.util; |