This is an automated email from the ASF dual-hosted git repository.
mthomsen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new 535d653 NIFI-1451 disable-doclint profile now gets activated for JDK
1.8 and newer
535d653 is described below
commit 535d65370fa3b225b59bd681ccbe4b8cf898abb3
Author: Jan Hentschel <[email protected]>
AuthorDate: Sat Jul 7 21:24:42 2018 +0200
NIFI-1451 disable-doclint profile now gets activated for JDK 1.8 and newer
This closes #2858
Signed-off-by: Mike Thomsen <[email protected]>
---
pom.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index 05e5973..d72dc1d 100644
--- a/pom.xml
+++ b/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>