Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 5f7c775c7 -> 63c7ba11a


Set version to 4.6.0-HBase-1.0 for release


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/63c7ba11
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/63c7ba11
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/63c7ba11

Branch: refs/heads/4.x-HBase-1.0
Commit: 63c7ba11a2e173c5b38ce1221eb70a640a1ff0e7
Parents: 5f7c775
Author: Mujtaba <mujt...@apache.org>
Authored: Fri Oct 16 07:59:40 2015 -0700
Committer: Mujtaba <mujt...@apache.org>
Committed: Fri Oct 16 07:59:40 2015 -0700

----------------------------------------------------------------------
 dev/make_rc.sh                 | 9 +++++++--
 phoenix-assembly/pom.xml       | 2 +-
 phoenix-core/pom.xml           | 2 +-
 phoenix-flume/pom.xml          | 2 +-
 phoenix-pherf/pom.xml          | 2 +-
 phoenix-pig/pom.xml            | 2 +-
 phoenix-server-client/pom.xml  | 2 +-
 phoenix-server/pom.xml         | 2 +-
 phoenix-spark/pom.xml          | 2 +-
 phoenix-tracing-webapp/pom.xml | 2 +-
 pom.xml                        | 2 +-
 11 files changed, 17 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/dev/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev/make_rc.sh b/dev/make_rc.sh
index 62f332a..cee493e 100755
--- a/dev/make_rc.sh
+++ b/dev/make_rc.sh
@@ -41,7 +41,7 @@ DIR_EXAMPLES=$DIR_REL_BIN_PATH/examples
 DIR_DOCS=dev/release_files
 
 # Verify no target exists
-mvn clean; mvn clean -Dhadoop.profile=2; rm -rf $DIR_REL_BASE;
+mvn clean; rm -rf $DIR_REL_BASE;
 RESULT=$(find -iname target)
 
 if [ -z "$RESULT" ]
@@ -68,17 +68,22 @@ mkdir $DIR_BIN;
 mv $REL_SRC.tar.gz $DIR_REL_SRC_TAR_PATH;
 
 # Copy common jars
-mvn clean apache-rat:check package -DskipTests;
+mvn clean apache-rat:check package -DskipTests -Dcheckstyle.skip=true -q;
 rm -rf $(find . -type d -name archive-tmp);
 
 # Copy all phoenix-*.jars to release dir
 phx_jars=$(find -iname phoenix-*.jar)
 cp $phx_jars $DIR_REL_BIN_PATH;
 
+# Exclude uber jars as it exceeds max upload limit for Apache SVN until 
PHOENIX-2248 is fixed
+rm $DIR_REL_BIN_PATH/*webapp*runnable*
+rm $DIR_REL_BIN_PATH/*pherf*dependencies*
+
 # Copy bin
 cp bin/* $DIR_BIN;
 
 # Copy release docs
+
 cp $DIR_DOCS/* $DIR_REL_BIN_PATH;
 
 # Copy examples

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-assembly/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-assembly/pom.xml b/phoenix-assembly/pom.xml
index 52febfd..a4fef17 100644
--- a/phoenix-assembly/pom.xml
+++ b/phoenix-assembly/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-assembly</artifactId>
   <name>Phoenix Assembly</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-core/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 583c265..449362b 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-core</artifactId>
   <name>Phoenix Core</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-flume/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-flume/pom.xml b/phoenix-flume/pom.xml
index 098053d..fc2108f 100644
--- a/phoenix-flume/pom.xml
+++ b/phoenix-flume/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-flume</artifactId>
   <name>Phoenix - Flume</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-pherf/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-pherf/pom.xml b/phoenix-pherf/pom.xml
index fdee11e..c06a12b 100644
--- a/phoenix-pherf/pom.xml
+++ b/phoenix-pherf/pom.xml
@@ -15,7 +15,7 @@
        <parent>
                <groupId>org.apache.phoenix</groupId>
                <artifactId>phoenix</artifactId>
-               <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+               <version>4.6.0-HBase-1.0</version>
        </parent>
 
        <artifactId>phoenix-pherf</artifactId>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-pig/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-pig/pom.xml b/phoenix-pig/pom.xml
index e465756..00750db 100644
--- a/phoenix-pig/pom.xml
+++ b/phoenix-pig/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-pig</artifactId>
   <name>Phoenix - Pig</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-server-client/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-server-client/pom.xml b/phoenix-server-client/pom.xml
index 6879228..27b59bc 100644
--- a/phoenix-server-client/pom.xml
+++ b/phoenix-server-client/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-server-client</artifactId>
   <name>Phoenix Query Server Client</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-server/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-server/pom.xml b/phoenix-server/pom.xml
index 303d51a..961ade1 100644
--- a/phoenix-server/pom.xml
+++ b/phoenix-server/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-server</artifactId>
   <name>Phoenix Query Server</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-spark/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-spark/pom.xml b/phoenix-spark/pom.xml
index 79ab227..a75507d 100644
--- a/phoenix-spark/pom.xml
+++ b/phoenix-spark/pom.xml
@@ -28,7 +28,7 @@
   <parent>
     <groupId>org.apache.phoenix</groupId>
     <artifactId>phoenix</artifactId>
-    <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+    <version>4.6.0-HBase-1.0</version>
   </parent>
   <artifactId>phoenix-spark</artifactId>
   <name>Phoenix - Spark</name>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/phoenix-tracing-webapp/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-tracing-webapp/pom.xml b/phoenix-tracing-webapp/pom.xml
index f231e50..3381a70 100755
--- a/phoenix-tracing-webapp/pom.xml
+++ b/phoenix-tracing-webapp/pom.xml
@@ -27,7 +27,7 @@
     <parent>
       <groupId>org.apache.phoenix</groupId>
       <artifactId>phoenix</artifactId>
-      <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+      <version>4.6.0-HBase-1.0</version>
     </parent>
 
     <artifactId>phoenix-tracing-webapp</artifactId>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/63c7ba11/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 22d89f9..9ce01be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.phoenix</groupId>
   <artifactId>phoenix</artifactId>
-  <version>4.6.0-HBase-1.0-SNAPSHOT</version>
+  <version>4.6.0-HBase-1.0</version>
   <packaging>pom</packaging>
   <name>Apache Phoenix</name>
   <description>A SQL layer over HBase</description>

Reply via email to