aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml-full
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-04-14 22:53:33 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-04-14 22:53:33 +0000
commitbb5d321b79193b98051f435621f5044842716c4e (patch)
treebec508518798239131c7cdf3825d4328a7d0e831 /poi-ooxml-full
parent7c67bba960e46433d8bf11674ef862153403cfdc (diff)
downloadpoi-bb5d321b79193b98051f435621f5044842716c4e.tar.gz
poi-bb5d321b79193b98051f435621f5044842716c4e.zip
fix javadocs - remove @author tags (http://apache-poi.1045710.n5.nabble.com/Javadocs-clean-up-remove-author-tags-tp5737663.html)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888780 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml-full')
-rw-r--r--poi-ooxml-full/build.gradle16
1 files changed, 16 insertions, 0 deletions
diff --git a/poi-ooxml-full/build.gradle b/poi-ooxml-full/build.gradle
index cc9fc88b53..b1fd44de93 100644
--- a/poi-ooxml-full/build.gradle
+++ b/poi-ooxml-full/build.gradle
@@ -139,6 +139,22 @@ tasks.withType(Jar) {
destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}")
}
+javadoc {
+ failOnError = true
+ maxMemory = "1024M"
+ doFirst {
+ options {
+ if (JavaVersion.current().isJava9Compatible()) {
+ addBooleanOption('html5', true)
+ }
+ links 'https://xmlbeans.apache.org/docs/5.0.0/'
+ use = true
+ splitIndex = true
+ source = "1.8"
+ }
+ }
+}
+
task sourceJar(type: Jar) {
classifier 'sources'
from sourceSets.main.allJava