diff options
author | Dominik Stadler <centic@apache.org> | 2023-01-06 17:41:28 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2023-01-06 17:41:28 +0000 |
commit | 4c1f59d85c186b83723b1a6580159a8322d196ed (patch) | |
tree | 335ba351d49564005a170e4bff70689509b187db /poi | |
parent | e3924e5d0bd4a710b91221064584b490dfcb3b15 (diff) | |
download | poi-4c1f59d85c186b83723b1a6580159a8322d196ed.tar.gz poi-4c1f59d85c186b83723b1a6580159a8322d196ed.zip |
Testing with saxon-HE: Avoid module-clash between xml.apis and java.xml
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/poi/build.gradle b/poi/build.gradle index c67e02d86a..57493d7c38 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -51,7 +51,9 @@ dependencies { testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}" if (SAXON_TEST) { - testRuntimeOnly "net.sf.saxon:Saxon-HE:${saxonVersion}" + testRuntimeOnly("net.sf.saxon:Saxon-HE:${saxonVersion}") { + exclude group: 'xml-apis', module: 'xml-apis' + } } // needed for locating the external references |