diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-09-05 12:51:44 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-09-05 12:51:44 +0000 |
commit | bfddbcfcb7349be865f268c7163f094499ae9297 (patch) | |
tree | c58fa900cf63423041ddd425c54a27de9fc56f44 | |
parent | 76b270ca643b7df3d62a3ecc32ec2df464d892f6 (diff) | |
download | poi-bfddbcfcb7349be865f268c7163f094499ae9297.tar.gz poi-bfddbcfcb7349be865f268c7163f094499ae9297.zip |
try not to have poi-ooxml-full in pom (still need to work out how to add poi-ooxml-lite instead)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892933 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-ooxml/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle index df7a7dbc27..339bc97cc0 100644 --- a/poi-ooxml/build.gradle +++ b/poi-ooxml/build.gradle @@ -44,9 +44,9 @@ sourceSets { dependencies { api project(':poi') - api project(':poi-ooxml-full') - api project(path: ':poi', configuration: 'archives') - api project(path: ':poi-ooxml-full', configuration: 'archives') + compileOnly project(':poi-ooxml-full') + //need to find some way to add poi-ooxml-lite without causing cicular dependency failure + //implementation project(path: ':poi-ooxml-lite', configuration: 'archives') implementation 'org.apache.commons:commons-collections4:4.4' api "org.apache.commons:commons-compress:${commonsCompressVersion}" |