You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2020/12/25 19:58:32 UTC

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

Author: kiwiwings
Date: Fri Dec 25 19:58:32 2020
New Revision: 1884804

URL: http://svn.apache.org/viewvc?rev=1884804&view=rev
Log:
try to fix gradle sonarqube job

Modified:
    poi/trunk/build.gradle

Modified: poi/trunk/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1884804&r1=1884803&r2=1884804&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Fri Dec 25 19:58:32 2020
@@ -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



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