diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2020-12-25 19:58:32 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2020-12-25 19:58:32 +0000 |
commit | be1afe5ff586cfc01c68ca6dc58e84f951aca2ef (patch) | |
tree | f6f73a41e009fdee2ee1e45cd8c0ecb54184ca5c /build.gradle | |
parent | 793e8b6f6a530870da2d0b62c8f81facd407846a (diff) | |
download | poi-be1afe5ff586cfc01c68ca6dc58e84f951aca2ef.tar.gz poi-be1afe5ff586cfc01c68ca6dc58e84f951aca2ef.zip |
try to fix gradle sonarqube job
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884804 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 49457ef471..a42b0a8f21 100644 --- a/build.gradle +++ b/build.gradle @@ -277,8 +277,12 @@ project('ooxml') { // we need to ensure that the custom ant tasks are compiled before we import the build.xml file ant.mkdir(dir: "../../build/poi-ant-contrib") - ant.javac(srcdir: "../../src/excelant/poi-ant-contrib", destdir: "../../build/poi-ant-contrib", - classpath: configurations.antdep.asPath) + ant.javac(srcdir: "../../src/excelant/poi-ant-contrib" + , destdir: "../../build/poi-ant-contrib" + , classpath: configurations.antdep.asPath + , includeantruntime: "true" + , excludes: "Junit5Progress.java" + ) // for now import the ant-task for building the jars from build.xml // we need to rename the tasks as e.g. task "jar" conflicts with :ooxml:jar |