This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ab6864  Issue #1679 : Fix build failure due to javadoc
0ab6864 is described below

commit 0ab6864e51524ed02e7eae29cbcdfc94a0c6d073
Author: SongWang <[email protected]>
AuthorDate: Tue Sep 18 17:25:03 2018 +0800

    Issue #1679 : Fix build failure due to javadoc
    
    Descriptions of the changes in this PR:
    
    
    
    ### Motivation
    
    Fix build failure due to javadoc, additionalOptions' type is  an array .
    ### Changes
    
    correct assignment strategy of additionalOptions to avoid type mismatch
    
    Master Issue: #1679
    
    
    Author: songsong <[email protected]>
    
    Reviewers: Enrico Olivelli <[email protected]>, Sijie Guo 
<[email protected]>
    
    This closes #1681 from aCoder2013/fix-javadoc-build, closes #1679
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 609411c..701b9a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -764,7 +764,9 @@
         <configuration>
           <!-- Prevent missing javadoc comments from being marked as errors -->
           <additionalparam>-Xdoclint:none -notimestamp</additionalparam>
-          <additionalOptions>-Xdoclint:none -notimestamp</additionalOptions>
+          <additionalOptions>
+            <additionalOption>-Xdoclint:none -notimestamp</additionalOption>
+          </additionalOptions>
           
<subpackages>org.apache.bookkeeper.client:org.apache.bookkeeper.client.api:org.apache.bookkeeper.common.annotation:org.apache.bookkeeper.conf:org.apache.bookkeeper.feature:org.apache.bookkeeper.stats</subpackages>
           <groups>
             <group>

Reply via email to