vert-x3 / vertx-parent

The base parent pom for Vert.x projects
Apache License 2.0
8 stars 17 forks source link

Enable "--allow-script-in-comments" in javadoc plugin #16

Closed vietj closed 6 years ago

vietj commented 6 years ago

Current work-around

          <configuration>
            <sourceFileExcludes>
              <sourceFileExclude>**/package-info.java</sourceFileExclude>
              <sourceFileExclude>**/impl/**</sourceFileExclude>
            </sourceFileExcludes>
            <sourceFileIncludes>
              <sourceFileInclude>io/vertx/**/*.java</sourceFileInclude>
            </sourceFileIncludes>
            <additionalparam>-Xdoclint:none</additionalparam>
            <!-- needed for Java 8u121 -->
            <additionalparam>&#45;&#45;allow-script-in-comments</additionalparam>
            <failOnError>false</failOnError>
          </configuration>