diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2016-11-29 00:46:39 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2016-11-29 00:46:39 +0000 |
commit | 1575f3d26380e2f3c373cd4ccc86dbac40872667 (patch) | |
tree | 29185607395789adf6940c4386dfb08bba11e23b /build.xml | |
parent | 3553698c3a2579edb9108a39b0e399c30950f1f2 (diff) | |
download | poi-1575f3d26380e2f3c373cd4ccc86dbac40872667.tar.gz poi-1575f3d26380e2f3c373cd4ccc86dbac40872667.zip |
#60427 - Creating pictures in PowerPoint slides requires scratchpad-jar for adding WMF images
more cases
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1771832 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -339,7 +339,7 @@ under the License. <!-- classes are omitted on test cases outside the xml-dsign area to avoid classpath poisioning --> <!--path refid="ooxml.xmlsec.classpath"/--> <!-- Used only for ExtractorFactory, see #57963 --> - <pathelement location="${scratchpad.output.dir}"/> + <pathelement location="${scratchpad.output.dir}" unless:true="${scratchpad.ignore}"/> </path> <path id="test.classpath"> @@ -1415,11 +1415,12 @@ under the License. <exclude name="**/All*Tests.java"/> <exclude name="**/TestSignatureInfo.java"/> <exclude name="**/${testexcludepattern}.java"/> + <exclude name="**/TestExtractorFactory.java" if:true="${scratchpad.ignore}"/> </fileset> </batchtest> </junit> </jacoco:coverage> - <jacoco:coverage enabled="${coverage.enabled}" excludes="${coverage.excludes}" destfile="build/jacoco-@{type}-xmlsec.exec"> + <jacoco:coverage enabled="${coverage.enabled}" excludes="${coverage.excludes}" destfile="build/jacoco-@{type}-xmlsec.exec"> <junit printsummary="yes" fork="yes" forkmode="once" haltonfailure="${halt.on.test.failure}" failureproperty="ooxml.xmlsec.test.failed"> <classpath> |