You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2023/01/06 17:41:28 UTC

svn commit: r1906425 - /poi/trunk/poi/build.gradle

Author: centic
Date: Fri Jan  6 17:41:28 2023
New Revision: 1906425

URL: http://svn.apache.org/viewvc?rev=1906425&view=rev
Log:
Testing with saxon-HE: Avoid module-clash between xml.apis and java.xml

Modified:
    poi/trunk/poi/build.gradle

Modified: poi/trunk/poi/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/poi/build.gradle?rev=1906425&r1=1906424&r2=1906425&view=diff
==============================================================================
--- poi/trunk/poi/build.gradle (original)
+++ poi/trunk/poi/build.gradle Fri Jan  6 17:41:28 2023
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org