You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:45:12 UTC

[46/51] [abbrv] brooklyn-docs git commit: ignore javadoc errors in docs build

ignore javadoc errors in docs build

javadoc seems a lot stricter here (updated os x environment), both in CLI and maven.
i wonder if the exit code has changed...


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/fad508f8
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/fad508f8
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/fad508f8

Branch: refs/heads/0.8.0-incubating
Commit: fad508f8f9b6832c22cb44fbc6cb2ca513f9a605
Parents: 1554b38
Author: Alex Heneveld <al...@cloudsoft.io>
Authored: Thu Sep 3 03:14:54 2015 +0100
Committer: Alex Heneveld <al...@cloudsoft.io>
Committed: Thu Sep 3 03:14:54 2015 +0100

----------------------------------------------------------------------
 docs/_build/make-javadoc.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/fad508f8/docs/_build/make-javadoc.sh
----------------------------------------------------------------------
diff --git a/docs/_build/make-javadoc.sh b/docs/_build/make-javadoc.sh
index 2fa6258..c7d9a5a 100755
--- a/docs/_build/make-javadoc.sh
+++ b/docs/_build/make-javadoc.sh
@@ -42,7 +42,7 @@ javadoc -sourcepath $SOURCE_PATHS \
   -footer '<b>Apache Brooklyn - Multi-Cloud Application Management</b> <br/> <a href="http://brooklyn.io/" target="_top">brooklyn.io</a>. Apache License. &copy; '$YEARSTAMP'.' \
 2>&1 1>/dev/null | tee target/javadoc.log
 
-if ((${PIPESTATUS[0]})) ; then echo ; echo ; echo "ERROR: javadoc process exited non-zero" ; exit 1 ; fi
+if ((${PIPESTATUS[0]})) ; then echo ; echo ; echo "wARNING: javadoc process exited non-zero" ; echo ; echo ; fi
 echo ; echo
 
 if [ ! -f target/$JAVADOC_TARGET1_SUBPATH/org/apache/brooklyn/api/entity/Entity.html ]; then echo "ERROR: missing expected content. Are the paths right?" ; exit 1 ; fi