You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2014/08/19 05:47:44 UTC

[1/2] git commit: Fix release:prepare to that it commits to git

Repository: incubator-optiq
Updated Branches:
  refs/heads/master b86786ef9 -> 45e5269b6


Fix release:prepare to that it commits to git


Project: http://git-wip-us.apache.org/repos/asf/incubator-optiq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-optiq/commit/b94de1c9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-optiq/tree/b94de1c9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-optiq/diff/b94de1c9

Branch: refs/heads/master
Commit: b94de1c99f14120d06816764b97d2e07d2de5603
Parents: b86786e
Author: Julian Hyde <jh...@apache.org>
Authored: Mon Aug 18 20:41:18 2014 -0700
Committer: Julian Hyde <jh...@apache.org>
Committed: Mon Aug 18 20:41:18 2014 -0700

----------------------------------------------------------------------
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/b94de1c9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index addaa4e..5251e72 100644
--- a/pom.xml
+++ b/pom.xml
@@ -281,6 +281,17 @@ limitations under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.4.2</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>1.9.1</version>
+          </dependency>
+        </dependencies>
+      </plugin>
     </plugins>
 
     <pluginManagement>


[2/2] git commit: [maven-release-plugin] prepare release optiq-0.9.0-incubating

Posted by jh...@apache.org.
[maven-release-plugin] prepare release optiq-0.9.0-incubating


Project: http://git-wip-us.apache.org/repos/asf/incubator-optiq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-optiq/commit/45e5269b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-optiq/tree/45e5269b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-optiq/diff/45e5269b

Branch: refs/heads/master
Commit: 45e5269b6cd4648c7d61c970389dd5b58b673888
Parents: b94de1c
Author: Julian Hyde <jh...@apache.org>
Authored: Mon Aug 18 20:47:43 2014 -0700
Committer: Julian Hyde <jh...@apache.org>
Committed: Mon Aug 18 20:47:43 2014 -0700

----------------------------------------------------------------------
 avatica/pom.xml    | 4 ++--
 core/pom.xml       | 4 ++--
 mongodb/pom.xml    | 4 ++--
 plus/pom.xml       | 4 ++--
 pom.xml            | 4 ++--
 spark/pom.xml      | 4 ++--
 splunk/pom.xml     | 4 ++--
 ubenchmark/pom.xml | 2 +-
 8 files changed, 15 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/avatica/pom.xml
----------------------------------------------------------------------
diff --git a/avatica/pom.xml b/avatica/pom.xml
index 5545954..1340c1b 100644
--- a/avatica/pom.xml
+++ b/avatica/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-avatica</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq Avatica</name>
   <description>JDBC driver framework.</description>
 

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index f644e9d..27dbf2a 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-core</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq Core</name>
   <description>Core Optiq APIs and engine.</description>
 

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/mongodb/pom.xml
----------------------------------------------------------------------
diff --git a/mongodb/pom.xml b/mongodb/pom.xml
index 2d6bb34..6fade96 100644
--- a/mongodb/pom.xml
+++ b/mongodb/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-mongodb</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq MongoDB</name>
   <description>MongoDB adapter for Optiq.</description>
 

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/plus/pom.xml
----------------------------------------------------------------------
diff --git a/plus/pom.xml b/plus/pom.xml
index d952425..45a5753 100644
--- a/plus/pom.xml
+++ b/plus/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-plus</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq Plus</name>
   <description>Miscellaneous extras for Optiq.</description>
 

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5251e72..07983eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@ limitations under the License.
   <groupId>org.apache.optiq</groupId>
   <artifactId>optiq</artifactId>
   <packaging>pom</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
 
   <!-- More project information. -->
   <name>Optiq</name>
@@ -59,7 +59,7 @@ limitations under the License.
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-optiq.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-optiq.git</developerConnection>
     <url>https://github.com/apache/incubator-optiq</url>
-    <tag>HEAD</tag>
+    <tag>optiq-0.9.0-incubating</tag>
   </scm>
 
   <modules>

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/spark/pom.xml
----------------------------------------------------------------------
diff --git a/spark/pom.xml b/spark/pom.xml
index c354710..4af9306 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-spark</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq Spark</name>
 
   <properties>

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/splunk/pom.xml
----------------------------------------------------------------------
diff --git a/splunk/pom.xml b/splunk/pom.xml
index a71c932..cd8193c 100644
--- a/splunk/pom.xml
+++ b/splunk/pom.xml
@@ -20,12 +20,12 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <artifactId>optiq-splunk</artifactId>
   <packaging>jar</packaging>
-  <version>0.9.0-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating</version>
   <name>Optiq Splunk</name>
   <description>Splunk adapter for Optiq; also a JDBC driver for Splunk.</description>
 

http://git-wip-us.apache.org/repos/asf/incubator-optiq/blob/45e5269b/ubenchmark/pom.xml
----------------------------------------------------------------------
diff --git a/ubenchmark/pom.xml b/ubenchmark/pom.xml
index bbca33d..7df6e83 100644
--- a/ubenchmark/pom.xml
+++ b/ubenchmark/pom.xml
@@ -20,7 +20,7 @@ limitations under the License.
   <parent>
     <groupId>org.apache.optiq</groupId>
     <artifactId>optiq</artifactId>
-    <version>0.9.0-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating</version>
   </parent>
 
   <properties>