diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-25 10:05:00 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-25 10:05:00 +0000 |
commit | a3f0121147c3fb708b17795e7906a92a2bde2331 (patch) | |
tree | 37e38b2e95bc1be855da32be1a09b1fd8f6e005f /poi-ooxml/build.gradle | |
parent | 12e3d2a9edf34730101cb77b0f50e42f533960b6 (diff) | |
download | poi-a3f0121147c3fb708b17795e7906a92a2bde2331.tar.gz poi-a3f0121147c3fb708b17795e7906a92a2bde2331.zip |
saxon test
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml/build.gradle')
-rw-r--r-- | poi-ooxml/build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle index 412880b609..f8f2510a74 100644 --- a/poi-ooxml/build.gradle +++ b/poi-ooxml/build.gradle @@ -131,7 +131,7 @@ dependencies { } testImplementation project(path:':poi', configuration:'tests') testImplementation project(path:':poi-ooxml-lite-agent', configuration: 'archives') - testImplementation 'org.apiguardian:apiguardian-api:1.1.2' + testRuntimeOnly 'org.apiguardian:apiguardian-api:1.1.2' testImplementation 'org.xmlunit:xmlunit-core:2.8.3' testImplementation 'org.reflections:reflections:0.10.2' testImplementation 'org.openjdk.jmh:jmh-core:1.33' @@ -143,6 +143,9 @@ dependencies { // see https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/ testImplementation "org.apache.logging.log4j:log4j-slf4j18-impl:${log4jVersion}" + if (SAXON_TEST) { + testRuntimeOnly 'net.sf.saxon:Saxon-HE:10.6' + } broken("org.apache.xmlgraphics:batik-script:${batikVersion}"){ exclude group: 'xalan', module: 'xalan' |