Return-Path: X-Original-To: apmail-parquet-commits-archive@minotaur.apache.org Delivered-To: apmail-parquet-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 D625918200 for ; Thu, 14 May 2015 22:39:52 +0000 (UTC) Received: (qmail 73623 invoked by uid 500); 14 May 2015 22:39:52 -0000 Delivered-To: apmail-parquet-commits-archive@parquet.apache.org Received: (qmail 73599 invoked by uid 500); 14 May 2015 22:39:52 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 73590 invoked by uid 99); 14 May 2015 22:39:52 -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; Thu, 14 May 2015 22:39:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 26A38E051A; Thu, 14 May 2015 22:39:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: blue@apache.org To: commits@parquet.apache.org Message-Id: <69b8cd1f56ee4c989fa58dfb73cb2508@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: parquet-mr git commit: PARQUET-265: Update POM files for Parquet TLP. Date: Thu, 14 May 2015 22:39:52 +0000 (UTC) Repository: parquet-mr Updated Branches: refs/heads/master c7d56cffb -> e5d9c6c79 PARQUET-265: Update POM files for Parquet TLP. Author: Ryan Blue Closes #186 from rdblue/PARQUET-265-update-build-for-graduation and squashes the following commits: 7bd2931 [Ryan Blue] PARQUET-265: Update POM files for Parquet TLP. Project: http://git-wip-us.apache.org/repos/asf/parquet-mr/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-mr/commit/e5d9c6c7 Tree: http://git-wip-us.apache.org/repos/asf/parquet-mr/tree/e5d9c6c7 Diff: http://git-wip-us.apache.org/repos/asf/parquet-mr/diff/e5d9c6c7 Branch: refs/heads/master Commit: e5d9c6c7982b16840eb9ea95f8e087a2abfd1027 Parents: c7d56cf Author: Ryan Blue Authored: Thu May 14 15:39:39 2015 -0700 Committer: Ryan Blue Committed: Thu May 14 15:39:39 2015 -0700 ---------------------------------------------------------------------- dev/source-release.sh | 10 ++++----- parquet-avro/pom.xml | 4 ++-- parquet-benchmarks/pom.xml | 2 +- parquet-cascading/pom.xml | 4 ++-- parquet-column/pom.xml | 4 ++-- parquet-common/pom.xml | 4 ++-- parquet-encoding/pom.xml | 4 ++-- parquet-generator/pom.xml | 4 ++-- parquet-hadoop-bundle/pom.xml | 4 ++-- parquet-hadoop/pom.xml | 4 ++-- parquet-hive-bundle/pom.xml | 4 ++-- .../parquet-hive-0.10-binding/pom.xml | 2 +- .../parquet-hive-0.12-binding/pom.xml | 2 +- .../parquet-hive-binding-bundle/pom.xml | 2 +- .../parquet-hive-binding-factory/pom.xml | 2 +- .../parquet-hive-binding-interface/pom.xml | 2 +- parquet-hive/parquet-hive-binding/pom.xml | 2 +- .../parquet-hive-storage-handler/pom.xml | 2 +- parquet-hive/pom.xml | 4 ++-- parquet-jackson/pom.xml | 4 ++-- parquet-pig-bundle/pom.xml | 4 ++-- parquet-pig/pom.xml | 4 ++-- parquet-protobuf/pom.xml | 4 ++-- parquet-scala/pom.xml | 4 ++-- parquet-scrooge/pom.xml | 4 ++-- parquet-thrift/pom.xml | 4 ++-- parquet-tools/pom.xml | 4 ++-- pom.xml | 22 ++++++++++---------- 28 files changed, 60 insertions(+), 60 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/dev/source-release.sh ---------------------------------------------------------------------- diff --git a/dev/source-release.sh b/dev/source-release.sh index a61a6f3..5a19d8a 100644 --- a/dev/source-release.sh +++ b/dev/source-release.sh @@ -28,7 +28,7 @@ if [ -z "$2" ]; then exit fi -version=$1-incubating +version=$1 rc=$2 if [ -d tmp/ ]; then @@ -36,7 +36,7 @@ if [ -d tmp/ ]; then exit fi -tag=apache-parquet-mr-$version +tag=apache-parquet-$version tagrc=${tag}-rc${rc} echo "Preparing source for $tagrc" @@ -62,19 +62,19 @@ gpg --print-md MD5 $tarball > ${tarball}.md5 shasum $tarball > ${tarball}.sha # check out the parquet RC folder -svn co --depth=empty https://dist.apache.org/repos/dist/dev/incubator/parquet tmp +svn co --depth=empty https://dist.apache.org/repos/dist/dev/parquet tmp # add the release candidate for the tag mkdir -p tmp/$tagrc cp ${tarball}* tmp/$tagrc svn add tmp/$tagrc -echo "svn ci -m 'Apache Parquet MR (Incubating) $version RC${rc}' tmp/$tagrc" +echo "svn ci -m 'Apache Parquet MR $version RC${rc}' tmp/$tagrc" # clean up rm -rf tmp echo "Success! The release candidate is available here:" -echo " https://dist.apache.org/repos/dist/dev/incubator/parquet/$tagrc" +echo " https://dist.apache.org/repos/dist/dev/parquet/$tagrc" echo "" echo "Commit SHA1: $release_hash" http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-avro/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-avro/pom.xml b/parquet-avro/pom.xml index fea929d..6a5288b 100644 --- a/parquet-avro/pom.xml +++ b/parquet-avro/pom.xml @@ -29,8 +29,8 @@ parquet-avro jar - Apache Parquet Avro (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Avro + https://parquet.apache.org 1.7.6 http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-benchmarks/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-benchmarks/pom.xml b/parquet-benchmarks/pom.xml index 1bc0fe3..c1efa26 100644 --- a/parquet-benchmarks/pom.xml +++ b/parquet-benchmarks/pom.xml @@ -29,7 +29,7 @@ parquet-benchmarks jar Apache Parquet Benchmarks - https://github.com/Parquet/parquet-mr + https://parquet.apache.org 1.3.4 http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-cascading/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-cascading/pom.xml b/parquet-cascading/pom.xml index 4141b8f..103c411 100644 --- a/parquet-cascading/pom.xml +++ b/parquet-cascading/pom.xml @@ -29,8 +29,8 @@ parquet-cascading jar - Apache Parquet Cascading (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Cascading + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-column/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-column/pom.xml b/parquet-column/pom.xml index 5297d09..b9dea05 100644 --- a/parquet-column/pom.xml +++ b/parquet-column/pom.xml @@ -29,8 +29,8 @@ parquet-column jar - Apache Parquet Column (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Column + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-common/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-common/pom.xml b/parquet-common/pom.xml index 065e376..613138d 100644 --- a/parquet-common/pom.xml +++ b/parquet-common/pom.xml @@ -29,8 +29,8 @@ parquet-common jar - Apache Parquet Common (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Common + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-encoding/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-encoding/pom.xml b/parquet-encoding/pom.xml index 7cd6aec..8950e38 100644 --- a/parquet-encoding/pom.xml +++ b/parquet-encoding/pom.xml @@ -29,8 +29,8 @@ parquet-encoding jar - Apache Parquet Encodings (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Encodings + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-generator/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-generator/pom.xml b/parquet-generator/pom.xml index eff0191..c5004a4 100644 --- a/parquet-generator/pom.xml +++ b/parquet-generator/pom.xml @@ -29,8 +29,8 @@ parquet-generator jar - Apache Parquet Generator (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Generator + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hadoop-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hadoop-bundle/pom.xml b/parquet-hadoop-bundle/pom.xml index b95374e..c22aa85 100644 --- a/parquet-hadoop-bundle/pom.xml +++ b/parquet-hadoop-bundle/pom.xml @@ -29,8 +29,8 @@ parquet-hadoop-bundle jar - Apache Parquet Hadoop Bundle (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Hadoop Bundle + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hadoop/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hadoop/pom.xml b/parquet-hadoop/pom.xml index e4ea052..9a11af5 100644 --- a/parquet-hadoop/pom.xml +++ b/parquet-hadoop/pom.xml @@ -29,8 +29,8 @@ parquet-hadoop jar - Apache Parquet Hadoop (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Hadoop + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive-bundle/pom.xml b/parquet-hive-bundle/pom.xml index 6e889ea..d1a46a1 100644 --- a/parquet-hive-bundle/pom.xml +++ b/parquet-hive-bundle/pom.xml @@ -29,8 +29,8 @@ parquet-hive-bundle jar - Apache Parquet Hive Bundle (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Hive Bundle + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/parquet-hive-0.10-binding/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/parquet-hive-0.10-binding/pom.xml b/parquet-hive/parquet-hive-binding/parquet-hive-0.10-binding/pom.xml index 3732b2d..dd85f21 100644 --- a/parquet-hive/parquet-hive-binding/parquet-hive-0.10-binding/pom.xml +++ b/parquet-hive/parquet-hive-binding/parquet-hive-0.10-binding/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-0.10-binding - Apache Parquet Hive 0.10 Binding (Incubating) + Apache Parquet Hive 0.10 Binding jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/parquet-hive-0.12-binding/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/parquet-hive-0.12-binding/pom.xml b/parquet-hive/parquet-hive-binding/parquet-hive-0.12-binding/pom.xml index ae2d7b3..d41730b 100644 --- a/parquet-hive/parquet-hive-binding/parquet-hive-0.12-binding/pom.xml +++ b/parquet-hive/parquet-hive-binding/parquet-hive-0.12-binding/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-0.12-binding - Apache Parquet Hive 0.12 Binding (Incubating) + Apache Parquet Hive 0.12 Binding jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/parquet-hive-binding-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/parquet-hive-binding-bundle/pom.xml b/parquet-hive/parquet-hive-binding/parquet-hive-binding-bundle/pom.xml index 27d6842..fef13cf 100644 --- a/parquet-hive/parquet-hive-binding/parquet-hive-binding-bundle/pom.xml +++ b/parquet-hive/parquet-hive-binding/parquet-hive-binding-bundle/pom.xml @@ -29,7 +29,7 @@ 4.0.0 parquet-hive-binding-bundle - Apache Parquet Hive Binding Bundle (Incubating) + Apache Parquet Hive Binding Bundle jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/parquet-hive-binding-factory/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/parquet-hive-binding-factory/pom.xml b/parquet-hive/parquet-hive-binding/parquet-hive-binding-factory/pom.xml index cae2f8e..68351eb 100644 --- a/parquet-hive/parquet-hive-binding/parquet-hive-binding-factory/pom.xml +++ b/parquet-hive/parquet-hive-binding/parquet-hive-binding-factory/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-binding-factory - Apache Parquet Hive Binding Factory (Incubating) + Apache Parquet Hive Binding Factory jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/parquet-hive-binding-interface/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/parquet-hive-binding-interface/pom.xml b/parquet-hive/parquet-hive-binding/parquet-hive-binding-interface/pom.xml index 7120319..580be1c 100644 --- a/parquet-hive/parquet-hive-binding/parquet-hive-binding-interface/pom.xml +++ b/parquet-hive/parquet-hive-binding/parquet-hive-binding-interface/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-binding-interface - Apache Parquet Hive Binding Interface (Incubating) + Apache Parquet Hive Binding Interface jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-binding/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-binding/pom.xml b/parquet-hive/parquet-hive-binding/pom.xml index 39f6845..eaad2cf 100644 --- a/parquet-hive/parquet-hive-binding/pom.xml +++ b/parquet-hive/parquet-hive-binding/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-binding - Apache Parquet Hive Binding Parent (Incubating) + Apache Parquet Hive Binding Parent pom http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/parquet-hive-storage-handler/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/parquet-hive-storage-handler/pom.xml b/parquet-hive/parquet-hive-storage-handler/pom.xml index 4ca4946..cdb74fb 100644 --- a/parquet-hive/parquet-hive-storage-handler/pom.xml +++ b/parquet-hive/parquet-hive-storage-handler/pom.xml @@ -27,7 +27,7 @@ 4.0.0 parquet-hive-storage-handler - Parquet Hive Storage Handler + Apache Parquet Hive Storage Handler jar http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-hive/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-hive/pom.xml b/parquet-hive/pom.xml index 586496b..f9e00a7 100644 --- a/parquet-hive/pom.xml +++ b/parquet-hive/pom.xml @@ -29,8 +29,8 @@ parquet-hive pom - Apache Parquet Hive (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Hive + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-jackson/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-jackson/pom.xml b/parquet-jackson/pom.xml index f4825a7..beaf211 100644 --- a/parquet-jackson/pom.xml +++ b/parquet-jackson/pom.xml @@ -29,8 +29,8 @@ parquet-jackson jar - Apache Parquet Jackson (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Jackson + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-pig-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-pig-bundle/pom.xml b/parquet-pig-bundle/pom.xml index aa8e667..942c3a1 100644 --- a/parquet-pig-bundle/pom.xml +++ b/parquet-pig-bundle/pom.xml @@ -29,8 +29,8 @@ parquet-pig-bundle jar - Apache Parquet Pig Bundle (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Pig Bundle + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-pig/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-pig/pom.xml b/parquet-pig/pom.xml index 102d604..10419dd 100644 --- a/parquet-pig/pom.xml +++ b/parquet-pig/pom.xml @@ -29,8 +29,8 @@ parquet-pig jar - Apache Parquet Pig (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Pig + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-protobuf/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-protobuf/pom.xml b/parquet-protobuf/pom.xml index 309a52d..6cd5ecb 100644 --- a/parquet-protobuf/pom.xml +++ b/parquet-protobuf/pom.xml @@ -35,8 +35,8 @@ - Apache Parquet Protobuf (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Protobuf + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-scala/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-scala/pom.xml b/parquet-scala/pom.xml index ab18726..fe423c5 100644 --- a/parquet-scala/pom.xml +++ b/parquet-scala/pom.xml @@ -29,8 +29,8 @@ parquet-scala_${scala.binary.version} jar - Apache Parquet Scala (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Scala + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-scrooge/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-scrooge/pom.xml b/parquet-scrooge/pom.xml index 42d2656..ea567c8 100644 --- a/parquet-scrooge/pom.xml +++ b/parquet-scrooge/pom.xml @@ -29,8 +29,8 @@ parquet-scrooge_${scala.binary.version} jar - Apache Parquet Scrooge (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Scrooge + https://parquet.apache.org http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-thrift/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-thrift/pom.xml b/parquet-thrift/pom.xml index c19d2a1..358124e 100644 --- a/parquet-thrift/pom.xml +++ b/parquet-thrift/pom.xml @@ -29,8 +29,8 @@ parquet-thrift jar - Apache Parquet Thrift (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Thrift + https://parquet.apache.org 4.4 http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/parquet-tools/pom.xml ---------------------------------------------------------------------- diff --git a/parquet-tools/pom.xml b/parquet-tools/pom.xml index 5811b70..5a036c4 100644 --- a/parquet-tools/pom.xml +++ b/parquet-tools/pom.xml @@ -29,8 +29,8 @@ parquet-tools jar - Apache Parquet Tools (Incubating) - https://parquet.incubator.apache.org + Apache Parquet Tools + https://parquet.apache.org provided http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/e5d9c6c7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ea6d67f..7b46e8a 100644 --- a/pom.xml +++ b/pom.xml @@ -12,14 +12,14 @@ 1.8.0-SNAPSHOT pom - Apache Parquet MR (Incubating) - https://parquet.incubator.apache.org + Apache Parquet MR + https://parquet.apache.org Parquet is a columnar storage format that supports nested data. This provides the java implementation. - scm:git:git@github.com:apache/incubator-parquet-mr.git - scm:git:git@github.com:apache/incubator-parquet-mr.git - scm:git:https://git-wip-us.apache.org/repos/asf/incubator-parquet-mr.git + scm:git:git@github.com:apache/parquet-mr.git + scm:git:git@github.com:apache/parquet-mr.git + scm:git:https://git-wip-us.apache.org/repos/asf/parquet-mr.git @@ -37,15 +37,15 @@ Dev Mailing List - dev@parquet.incubator.apache.org - dev-subscribe@parquet.incubator.apache.org - dev-unsubscribe@parquet.incubator.apache.org + dev@parquet.apache.org + dev-subscribe@parquet.apache.org + dev-unsubscribe@parquet.apache.org Commits Mailing List - commits@parquet.incubator.apache.org - commits-subscribe@parquet.incubator.apache.org - commits-unsubscribe@parquet.incubator.apache.org + commits@parquet.apache.org + commits-subscribe@parquet.apache.org + commits-unsubscribe@parquet.apache.org