Fix for OODT-932: OODT-Core forces javadoc to run and fails on linting - it shouldn't do that.
Project: http://git-wip-us.apache.org/repos/asf/oodt/repo Commit: http://git-wip-us.apache.org/repos/asf/oodt/commit/fcb214f2 Tree: http://git-wip-us.apache.org/repos/asf/oodt/tree/fcb214f2 Diff: http://git-wip-us.apache.org/repos/asf/oodt/diff/fcb214f2 Branch: refs/heads/master Commit: fcb214f2710029582c125b73893d4dd4aa0b7bbe Parents: 30b5a01 Author: Chris Mattmann <[email protected]> Authored: Wed Jul 6 15:46:48 2016 -0700 Committer: Lewis John McGibbney <[email protected]> Committed: Thu Mar 9 21:12:10 2017 -0800 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ core/pom.xml | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oodt/blob/fcb214f2/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 7d0b1b2..22147f5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,9 @@ Apache OODT Change Log Release 1.1 - Current Development +* OODT-932 OODT-Core forces javadoc to run and fails on linting - it shouldn't + do that (mattmann) + * OODT-929 EnvUtilities should only load environment variables one time and statically cache them (mattmann) http://git-wip-us.apache.org/repos/asf/oodt/blob/fcb214f2/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index 6fafae6..ee8cb7e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -934,9 +934,12 @@ mm <profiles> <profile> <id>jdk1.8</id> - <activation> - <jdk>1.8</jdk> - </activation> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <properties> + <additionalparam>-Xdoclint:none</additionalparam> + </properties> <build> <plugins> <plugin>
