mirror of https://github.com/apache/nifi.git
NIFI-1451 disable-doclint profile now gets activated for JDK 1.8 and newer
This closes #2858 Signed-off-by: Mike Thomsen <mikerthomsen@gmail.com>
This commit is contained in:
parent
ecc014937a
commit
535d65370f
12
pom.xml
12
pom.xml
|
@ -700,15 +700,15 @@
|
|||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- This profile will disable DocLint which performs strict
|
||||
JavaDoc processing which was introduced in JDK 8. These are technically errors
|
||||
in the JavaDoc which we need to eventually address. However, if a release
|
||||
is performed using JDK 8, the JavaDoc generation would fail. By activating
|
||||
this profile when running on JDK 8 we can ensure the JavaDocs continue to
|
||||
<!-- This profile will disable DocLint which performs strict
|
||||
JavaDoc processing which was introduced in JDK 8. These are technically errors
|
||||
in the JavaDoc which we need to eventually address. However, if a release
|
||||
is performed using JDK 8 or newer, the JavaDoc generation would fail. By activating
|
||||
this profile when running on JDK 8 or newer we can ensure the JavaDocs continue to
|
||||
generate successfully -->
|
||||
<id>disable-doclint</id>
|
||||
<activation>
|
||||
<jdk>1.8</jdk>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
|
|
Loading…
Reference in New Issue