You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/09/27 01:45:09 UTC

[incubator-iotdb] branch reduce_project_version_declaration updated: reduce project version declaration (which can make releasing easily)

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch reduce_project_version_declaration
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/reduce_project_version_declaration by this push:
     new f73baa3  reduce project version declaration (which can make releasing easily)
f73baa3 is described below

commit f73baa338ac244970b818c12471f09fa39c26f2a
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Fri Sep 27 09:44:52 2019 +0800

    reduce project version declaration (which can make releasing easily)
---
 client/pom.xml                | 2 +-
 distribution/pom.xml          | 4 ++--
 example/jdbc/pom.xml          | 2 +-
 example/kafka/pom.xml         | 2 +-
 example/rocketmq/pom.xml      | 2 +-
 example/session/pom.xml       | 2 +-
 example/tsfile/pom.xml        | 3 +--
 grafana/pom.xml               | 2 +-
 jdbc/pom.xml                  | 4 ++--
 server/pom.xml                | 6 +++---
 session/pom.xml               | 8 ++++----
 spark-iotdb-connector/pom.xml | 5 ++---
 spark-tsfile/pom.xml          | 2 +-
 13 files changed, 21 insertions(+), 23 deletions(-)

diff --git a/client/pom.xml b/client/pom.xml
index ef1ea30..480b599 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -38,7 +38,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>commons-cli</groupId>
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 8b737a2..b9055ab 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -87,13 +87,13 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-server</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <type>zip</type>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-client</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <type>zip</type>
         </dependency>
     </dependencies>
diff --git a/example/jdbc/pom.xml b/example/jdbc/pom.xml
index 4f01935..25d5c11 100644
--- a/example/jdbc/pom.xml
+++ b/example/jdbc/pom.xml
@@ -37,7 +37,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
 </project>
diff --git a/example/kafka/pom.xml b/example/kafka/pom.xml
index a332987..11d41bf 100644
--- a/example/kafka/pom.xml
+++ b/example/kafka/pom.xml
@@ -39,7 +39,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.kafka</groupId>
diff --git a/example/rocketmq/pom.xml b/example/rocketmq/pom.xml
index 0117b30..da58964 100644
--- a/example/rocketmq/pom.xml
+++ b/example/rocketmq/pom.xml
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.rocketmq</groupId>
diff --git a/example/session/pom.xml b/example/session/pom.xml
index 8b1b215..9ad0199 100644
--- a/example/session/pom.xml
+++ b/example/session/pom.xml
@@ -37,7 +37,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-session</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
 </project>
diff --git a/example/tsfile/pom.xml b/example/tsfile/pom.xml
index 7a99f01..ad34cf5 100644
--- a/example/tsfile/pom.xml
+++ b/example/tsfile/pom.xml
@@ -28,13 +28,12 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tsfile-example</artifactId>
-    <version>0.9.0-SNAPSHOT</version>
     <name>tsfile-example</name>
     <dependencies>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
 </project>
diff --git a/grafana/pom.xml b/grafana/pom.xml
index fd1a712..b2e1eda 100644
--- a/grafana/pom.xml
+++ b/grafana/pom.xml
@@ -61,7 +61,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>javax.servlet</groupId>
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index 4b971d8..8f83a10 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -39,12 +39,12 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>service-rpc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
     </dependencies>
     <build>
diff --git a/server/pom.xml b/server/pom.xml
index 9055d28..608617c 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -38,17 +38,17 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>service-rpc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/session/pom.xml b/session/pom.xml
index 406167b..0bb58f8 100644
--- a/session/pom.xml
+++ b/session/pom.xml
@@ -69,23 +69,23 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>service-rpc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-server</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
diff --git a/spark-iotdb-connector/pom.xml b/spark-iotdb-connector/pom.xml
index a18120d..3dbb0f3 100644
--- a/spark-iotdb-connector/pom.xml
+++ b/spark-iotdb-connector/pom.xml
@@ -28,7 +28,6 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>spark-iotdb-connector</artifactId>
-    <version>0.9.0-SNAPSHOT</version>
     <packaging>jar</packaging>
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,12 +48,12 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-server</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/spark-tsfile/pom.xml b/spark-tsfile/pom.xml
index 1a922bd..6668375 100644
--- a/spark-tsfile/pom.xml
+++ b/spark-tsfile/pom.xml
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.spark</groupId>