diff options
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; |