jbufu / openid4java

Automatically exported from code.google.com/p/openid4java
Apache License 2.0
98 stars 57 forks source link

Disable Java 8 'doclint' checks #216

Open ankon opened 9 years ago

ankon commented 9 years ago

This allows building out-of-the-box with a Java 8 SDK.

nfalco79 commented 8 years ago

The follow is sufficient

<profiles>
    <profile>
        <id>disable-java8-doclint</id>
        <activation>
            <jdk>[1.8,)</jdk>
        </activation>
        <properties>
            <additionalparam>-Xdoclint:none</additionalparam>
        </properties>
    </profile>
</profiles>