Repository: calcite
Updated Branches:
  refs/heads/master b9da74ee3 -> 6770e2b21


Make build scripts Maven 3.3 compatible

javadoc-plugin / configuration / additionalOptions is String[], so nested tag 
should be used


Project: http://git-wip-us.apache.org/repos/asf/calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/6770e2b2
Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/6770e2b2
Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/6770e2b2

Branch: refs/heads/master
Commit: 6770e2b2115b0691a68f99366057776307e5920e
Parents: b9da74e
Author: Vladimir Sitnikov <[email protected]>
Authored: Tue Sep 25 00:21:11 2018 +0300
Committer: Vladimir Sitnikov <[email protected]>
Committed: Tue Sep 25 00:21:48 2018 +0300

----------------------------------------------------------------------
 pom.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/6770e2b2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 30b9363..3ab3658 100644
--- a/pom.xml
+++ b/pom.xml
@@ -907,7 +907,9 @@ limitations under the License.
                javadoc on private methods. The configuration for "mvn site" is
                under "reporting", and is more lenient. -->
           <configuration>
-            <additionalOptions>${maven-javadoc-html5}</additionalOptions>
+            <additionalOptions>
+              <additionalOption>${maven-javadoc-html5}</additionalOption>
+            </additionalOptions>
             <doclint>all,-missing</doclint>
             <failOnWarnings>true</failOnWarnings>
             <links>
@@ -1200,7 +1202,8 @@ limitations under the License.
         <jdk>1.8</jdk>
       </activation>
       <properties>
-        <maven-javadoc-html5/>
+        <!-- Java 1.8 does not support -html5, so we pass another harmles 
option -->
+        <maven-javadoc-html5>-notimestamp</maven-javadoc-html5>
       </properties>
     </profile>
   </profiles>

Reply via email to