diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-08-16 22:49:01 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-08-16 22:49:01 +0000 |
commit | 8f24aaab2bea7c9170cc270ccc51aadd178a3c52 (patch) | |
tree | 96898352b9bfb5f937845e6944b949a85a669a7a /build.gradle | |
parent | 83488d23200dcb85d82b20c50fa1c00916ba4776 (diff) | |
download | poi-8f24aaab2bea7c9170cc270ccc51aadd178a3c52.tar.gz poi-8f24aaab2bea7c9170cc270ccc51aadd178a3c52.zip |
fix Windows gradle build - task allJavaDoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892390 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index bc5840d1e2..4c1a61d4fb 100644 --- a/build.gradle +++ b/build.gradle @@ -412,8 +412,7 @@ task allJavaDoc(type: Javadoc) { options.addBooleanOption('Xdoclint:all,-missing', true) title = 'POI API Documentation' - options.bottom = '<![CDATA[<i>Copyright ' + new Date().format('yyyy') + ' The Apache Software Foundation or\n' + - 'its licensors, as applicable.</i>]]>' + options.bottom = '<![CDATA[<i>Copyright ' + new Date().format('yyyy') + ' The Apache Software Foundation or its licensors, as applicable.</i>]]>' options.group('DDF - Dreadful Drawing Format', 'org.apache.poi.ddf*') options.group('HPSF - Horrible Property Set Format', 'org.apache.poi.hpsf*') |