Skip to content

Commit a0eb8b2

Browse files
authored
Merge pull request #129 from oceanbase/change_1x_pom
[Chore] modify pom for 1.x obkv-hbase
2 parents d0d38c5 + 33e5b96 commit a0eb8b2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ OBKV HBase Client is Java Library that can be used to access data from [OceanBas
66
Create table in the OceanBase database:
77

88
``` sql
9+
CREATE TABLEGROUP test1;
910
CREATE TABLE `test1$family1` (
1011
`K` varbinary(1024) NOT NULL,
1112
`Q` varbinary(256) NOT NULL,
1213
`T` bigint(20) NOT NULL,
1314
`V` varbinary(1024) DEFAULT NULL,
14-
PRIMARY KEY (`K`, `Q`, `T`)
15-
);
15+
PRIMARY KEY (`K`, `Q`, `T`))
16+
TABLEGROUP = test1;
1617
```
1718
**Note:**
1819
* test1: HBase table name;
@@ -23,7 +24,7 @@ Import the dependency for your maven project:
2324
<dependency>
2425
<groupId>com.oceanbase</groupId>
2526
<artifactId>obkv-hbase-client</artifactId>
26-
<version>0.1.5</version>
27+
<version>1.0.0</version>
2728
</dependency>
2829
```
2930
**Note:**

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.oceanbase</groupId>
66
<artifactId>obkv-hbase-client</artifactId>
7-
<version>0.1.6-SNAPSHOT</version>
7+
<version>1.0.0-SNAPSHOT</version>
88

99
<name>${project.groupId}:${project.artifactId}</name>
1010
<description>OceanBase JavaClient for HBaseApi</description>
@@ -54,7 +54,7 @@
5454
<project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding>
5555
<project.encoding>UTF-8</project.encoding>
5656
<slf4j.version>1.7.21</slf4j.version>
57-
<table.client.version>1.2.14.4-SNAPSHOT</table.client.version>
57+
<table.client.version>1.3.0</table.client.version>
5858
</properties>
5959

6060
<dependencyManagement>

0 commit comments

Comments
 (0)