Return-Path: X-Original-To: apmail-phoenix-commits-archive@minotaur.apache.org Delivered-To: apmail-phoenix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 39E0F18E89 for ; Tue, 1 Sep 2015 22:49:53 +0000 (UTC) Received: (qmail 84474 invoked by uid 500); 1 Sep 2015 22:49:53 -0000 Delivered-To: apmail-phoenix-commits-archive@phoenix.apache.org Received: (qmail 84434 invoked by uid 500); 1 Sep 2015 22:49:53 -0000 Mailing-List: contact commits-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list commits@phoenix.apache.org Received: (qmail 84418 invoked by uid 99); 1 Sep 2015 22:49:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Sep 2015 22:49:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 05F87E0615; Tue, 1 Sep 2015 22:49:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mujtaba@apache.org To: commits@phoenix.apache.org Message-Id: <8b13b1a5f10843f690acb8ab6399e7f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: phoenix git commit: PHOENIX-2195 Query server jar files not included in released tarballs Date: Tue, 1 Sep 2015 22:49:53 +0000 (UTC) Repository: phoenix Updated Branches: refs/heads/4.5-HBase-0.98 ef2cd42fb -> 1aa04df62 PHOENIX-2195 Query server jar files not included in released tarballs Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/1aa04df6 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/1aa04df6 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/1aa04df6 Branch: refs/heads/4.5-HBase-0.98 Commit: 1aa04df62abd3a28ef987aca644ba3daad27aadf Parents: ef2cd42 Author: Mujtaba Authored: Tue Sep 1 15:49:37 2015 -0700 Committer: Mujtaba Committed: Tue Sep 1 15:49:37 2015 -0700 ---------------------------------------------------------------------- dev/make_rc.sh | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/1aa04df6/dev/make_rc.sh ---------------------------------------------------------------------- diff --git a/dev/make_rc.sh b/dev/make_rc.sh index 2f50308..afe188a 100755 --- a/dev/make_rc.sh +++ b/dev/make_rc.sh @@ -71,17 +71,9 @@ mv $REL_SRC.tar.gz $DIR_REL_SRC_TAR_PATH; mvn clean apache-rat:check package -DskipTests; rm -rf $(find . -type d -name archive-tmp); -cp $(find -iname phoenix-$PHOENIX-client-minimal.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-$PHOENIX-client-without-hbase.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-core-$PHOENIX.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-$PHOENIX-client.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-$PHOENIX-server.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-$PHOENIX-server-without-antlr.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-core-$PHOENIX-tests.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-flume-$PHOENIX.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-flume-$PHOENIX-tests.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-pig-$PHOENIX.jar) $DIR_REL_BIN_PATH; -cp $(find -iname phoenix-pig-$PHOENIX-tests.jar) $DIR_REL_BIN_PATH; +# Copy all phoenix-*.jars to release dir +phx_jars=$(find -iname phoenix-*.jar) +cp $phx_jars $DIR_REL_BIN_PATH; # Copy bin cp bin/* $DIR_BIN;