This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 982641895d [MINOR] Java Pom flag for disabling doc generating
982641895d is described below
commit 982641895d847392d8d011bf8b668eebd03a6f82
Author: Sebastian Baunsgaard <[email protected]>
AuthorDate: Fri Mar 14 12:53:19 2025 +0100
[MINOR] Java Pom flag for disabling doc generating
---
pom.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 64616b94de..d0646e7f9b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,6 +77,7 @@
<test-forkCount>1C</test-forkCount>
<rerun.failing.tests.count>2</rerun.failing.tests.count>
<jacoco.skip>false</jacoco.skip>
+ <doc.skip>false</doc.skip>
<jacoco.include>**</jacoco.include>
<automatedtestbase.outputbuffering>false</automatedtestbase.outputbuffering>
<argLine>-Xms3000m -Xmx3000m -Xmn300m</argLine>
@@ -875,9 +876,9 @@
<configuration>
<excludePackageNames>*.protobuf</excludePackageNames>
<notimestamp>true</notimestamp>
-
<failOnWarnings>true</failOnWarnings>
+
<failOnWarnings>false</failOnWarnings>
<quiet>true</quiet>
- <skip>false</skip>
+ <skip>${doc.skip}</skip>
<show>public</show>
<source>${java.level}</source>
</configuration>