Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit b2ccbca

Browse files
committed
Set version to 1.4.0
1 parent 5a43d84 commit b2ccbca

33 files changed

Lines changed: 164 additions & 164 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<groupId>org.smartdata</groupId>
1818
<artifactId>smartdata-project</artifactId>
19-
<version>1.4.0-SNAPSHOT</version>
19+
<version>1.4.0</version>
2020
<description>Smart Data Project</description>
2121
<name>SmartData Project</name>
2222
<packaging>pom</packaging>

smart-action/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smartdata-project</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-action</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-common</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
<scope>provided</scope>
3939
</dependency>
4040
<dependency>

smart-admin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smartdata-project</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-admin</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-common</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
<scope>provided</scope>
3939
</dependency>
4040
</dependencies>

smart-agent/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,31 +23,31 @@
2323
<parent>
2424
<groupId>org.smartdata</groupId>
2525
<artifactId>smartdata-project</artifactId>
26-
<version>1.4.0-SNAPSHOT</version>
26+
<version>1.4.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

3030
<artifactId>smart-agent</artifactId>
31-
<version>1.4.0-SNAPSHOT</version>
31+
<version>1.4.0</version>
3232
<packaging>jar</packaging>
3333

3434
<dependencies>
3535
<dependency>
3636
<groupId>org.smartdata</groupId>
3737
<artifactId>smart-engine</artifactId>
38-
<version>1.4.0-SNAPSHOT</version>
38+
<version>1.4.0</version>
3939
<scope>provided</scope>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.smartdata</groupId>
4343
<artifactId>smart-hadoop-client</artifactId>
44-
<version>1.4.0-SNAPSHOT</version>
44+
<version>1.4.0</version>
4545
<scope>runtime</scope>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.smartdata</groupId>
4949
<artifactId>smart-tidb</artifactId>
50-
<version>1.4.0-SNAPSHOT</version>
50+
<version>1.4.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>com.typesafe.akka</groupId>
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.smartdata</groupId>
6464
<artifactId>smart-engine</artifactId>
65-
<version>1.4.0-SNAPSHOT</version>
65+
<version>1.4.0</version>
6666
<classifier>tests</classifier>
6767
<scope>test</scope>
6868
</dependency>

smart-alluxio-support/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smartdata-project</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-alluxio-support</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>pom</packaging>
3232

3333
<modules>

smart-alluxio-support/smart-alluxio-client/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smart-alluxio-support</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>..</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-alluxio-client</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-common</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
<scope>provided</scope>
3939
<exclusions>
4040
<exclusion>
@@ -74,14 +74,14 @@
7474
<dependency>
7575
<groupId>org.smartdata</groupId>
7676
<artifactId>smart-metrics</artifactId>
77-
<version>1.4.0-SNAPSHOT</version>
77+
<version>1.4.0</version>
7878
<scope>provided</scope>
7979
</dependency>
8080

8181
<dependency>
8282
<groupId>org.smartdata</groupId>
8383
<artifactId>smart-client</artifactId>
84-
<version>1.4.0-SNAPSHOT</version>
84+
<version>1.4.0</version>
8585
<scope>provided</scope>
8686
</dependency>
8787

@@ -114,7 +114,7 @@
114114
<dependency>
115115
<groupId>org.smartdata</groupId>
116116
<artifactId>smart-admin</artifactId>
117-
<version>1.4.0-SNAPSHOT</version>
117+
<version>1.4.0</version>
118118
<scope>test</scope>
119119
</dependency>
120120
</dependencies>

smart-alluxio-support/smart-alluxio/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smart-alluxio-support</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>..</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-alluxio</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-common</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
<scope>provided</scope>
3939
<exclusions>
4040
<exclusion>
@@ -74,31 +74,31 @@
7474
<dependency>
7575
<groupId>org.smartdata</groupId>
7676
<artifactId>smart-metrics</artifactId>
77-
<version>1.4.0-SNAPSHOT</version>
77+
<version>1.4.0</version>
7878
<scope>provided</scope>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.smartdata</groupId>
8282
<artifactId>smart-metastore</artifactId>
83-
<version>1.4.0-SNAPSHOT</version>
83+
<version>1.4.0</version>
8484
<scope>provided</scope>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.smartdata</groupId>
8888
<artifactId>smart-client</artifactId>
89-
<version>1.4.0-SNAPSHOT</version>
89+
<version>1.4.0</version>
9090
<scope>provided</scope>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.smartdata</groupId>
9494
<artifactId>smart-admin</artifactId>
95-
<version>1.4.0-SNAPSHOT</version>
95+
<version>1.4.0</version>
9696
<scope>provided</scope>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.smartdata</groupId>
100100
<artifactId>smart-action</artifactId>
101-
<version>1.4.0-SNAPSHOT</version>
101+
<version>1.4.0</version>
102102
<scope>provided</scope>
103103
</dependency>
104104
<dependency>
@@ -153,14 +153,14 @@
153153
<dependency>
154154
<groupId>org.smartdata</groupId>
155155
<artifactId>smart-metastore</artifactId>
156-
<version>1.4.0-SNAPSHOT</version>
156+
<version>1.4.0</version>
157157
<scope>test</scope>
158158
<type>test-jar</type>
159159
</dependency>
160160
<dependency>
161161
<groupId>org.smartdata</groupId>
162162
<artifactId>smart-metastore</artifactId>
163-
<version>1.4.0-SNAPSHOT</version>
163+
<version>1.4.0</version>
164164
</dependency>
165165
<dependency>
166166
<groupId>com.squareup</groupId>

smart-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smartdata-project</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-client</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-common</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
<scope>provided</scope>
3939
</dependency>
4040
</dependencies>

smart-common/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
<parent>
2323
<groupId>org.smartdata</groupId>
2424
<artifactId>smartdata-project</artifactId>
25-
<version>1.4.0-SNAPSHOT</version>
25+
<version>1.4.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>smart-common</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
<packaging>jar</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>org.smartdata</groupId>
3636
<artifactId>smart-metrics</artifactId>
37-
<version>1.4.0-SNAPSHOT</version>
37+
<version>1.4.0</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.apache.hadoop</groupId>

0 commit comments

Comments
 (0)