Repository: oodt Updated Branches: refs/heads/master e0e107239 -> a89e2fbc2
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/a89e2fbc Tree: http://git-wip-us.apache.org/repos/asf/oodt/tree/a89e2fbc Diff: http://git-wip-us.apache.org/repos/asf/oodt/diff/a89e2fbc Branch: refs/heads/master Commit: a89e2fbc2dccf1a19c6585a4abeb4ffccb3f2f1e Parents: e0e1072 Author: Chris Mattmann <[email protected]> Authored: Wed Jul 6 15:46:48 2016 -0700 Committer: Chris Mattmann <[email protected]> Committed: Wed Jul 6 15:46:48 2016 -0700 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ core/pom.xml | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oodt/blob/a89e2fbc/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/a89e2fbc/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index ccebd33..674dc63 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -929,9 +929,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>
