Make apidoc generation less verbose -- makes it hard to figure out what is going on with the rest of the build
Signed-off-by: Chiradeep Vittal <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/81662645 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/81662645 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/81662645 Branch: refs/heads/quickcloud2 Commit: 8166264530ae75fc711869818d12d2e69c92a332 Parents: a0ab16b Author: Chiradeep Vittal <[email protected]> Authored: Fri Apr 5 11:51:59 2013 -0700 Committer: Chiradeep Vittal <[email protected]> Committed: Fri Apr 5 15:22:10 2013 -0700 ---------------------------------------------------------------------- tools/apidoc/build-apidoc.sh | 2 +- tools/apidoc/pom.xml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/81662645/tools/apidoc/build-apidoc.sh ---------------------------------------------------------------------- diff --git a/tools/apidoc/build-apidoc.sh b/tools/apidoc/build-apidoc.sh index 14d6459..d048a1b 100755 --- a/tools/apidoc/build-apidoc.sh +++ b/tools/apidoc/build-apidoc.sh @@ -19,7 +19,7 @@ # cloud-build-api-doc.sh -- builds api documentation. #set -x -set -u +#set -u TARGETJARDIR="$1" shift DEPSDIR="$1" http://git-wip-us.apache.org/repos/asf/cloudstack/blob/81662645/tools/apidoc/pom.xml ---------------------------------------------------------------------- diff --git a/tools/apidoc/pom.xml b/tools/apidoc/pom.xml index b324ad4..f7570ba 100644 --- a/tools/apidoc/pom.xml +++ b/tools/apidoc/pom.xml @@ -43,7 +43,6 @@ <configuration> <executable>bash</executable> <arguments> - <argument>-x</argument> <argument>./build-apidoc.sh</argument> <argument>${client.config.jars}</argument> <argument>${client.config.jars}</argument> @@ -63,7 +62,7 @@ <workingDirectory>target</workingDirectory> <executable>tar</executable> <arguments> - <argument>-cvjf</argument> + <argument>-cjf</argument> <argument>apidoc.tar.bz2</argument> <argument>xmldoc</argument> </arguments>
