ACCUMULO-1487 Fix build command in build.sh convenience script
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/479a36bd Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/479a36bd Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/479a36bd Branch: refs/heads/ACCUMULO-378 Commit: 479a36bd991e831fba04118c51a605a601a86dec Parents: 14e2b64 Author: Christopher Tubbs <ctubb...@apache.org> Authored: Mon Apr 7 20:41:59 2014 -0400 Committer: Christopher Tubbs <ctubb...@apache.org> Committed: Mon Apr 7 20:41:59 2014 -0400 ---------------------------------------------------------------------- assemble/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/479a36bd/assemble/build.sh ---------------------------------------------------------------------- diff --git a/assemble/build.sh b/assemble/build.sh index 31b2d2c..5f65419 100755 --- a/assemble/build.sh +++ b/assemble/build.sh @@ -52,13 +52,13 @@ if [[ $1 = '--create-release-candidate' ]]; then elif [[ $1 = '--seal-jars' ]]; then cacheGPG # build a tag, but with sealed jars - run mvn clean compile javadoc:aggregate install \ - -P apache-release,seal-jars,thrift,native,assemble,docs + run mvn clean install \ + -P apache-release,seal-jars,thrift,assemble,docs elif [[ $1 = '--test' ]]; then cacheGPG # build a tag, but with tests - run mvn clean compile javadoc:aggregate install \ - -P apache-release,thrift,native,assemble,docs + run mvn clean install \ + -P apache-release,thrift,assemble,docs else fail "Missing one of: --create-release-candidate, --test, --seal-jars" fi