因为缺少了-Xdoclint:-accessibility参数
模仿这里修改common-build.xml文件即可
参考:
-Xdoclint
Enables recommended checks for problems in javadoc comments
-Xdoclint:(all|none|[-]group)[/access]
Enables or disables specific groups of checks,
group can have one of the following values:
accessibility
html
missing
reference
syntax
The variable access specifies the minimum visibility level of classes and members that the -Xdoclint option checks. It can have one of the following values (in order of most to least visible):
public
protected
package
private
The default access level is private.
For more information about these groups of checks, see the -Xdoclint option of the javadoc command. The -Xdoclint option is disabled by default in the javac command.
For example, the following option checks classes and members (with all groups of checks) that have the access level of protected and higher (which includes protected and public):
-Xdoclint:all/protected
The following option enables all groups of checks for all access levels, except it will not check for HTML errors for classes and members that have the access level of package and higher (which includes package, protected and public):
-Xdoclint:all,-html/package
-Xdoclint/package:[-]packages(,[-]package)*
Enables or disables checks in specific packages. Each package is either the qualified name of a package or a package name prefix followed by .*, which expands to all sub-packages of the given package. Each package can be prefixed with a hyphen (-) to disable checks for a specified package or packages.