summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authordoufenghu <[email protected]>2023-11-24 20:23:31 +0800
committerdoufenghu <[email protected]>2023-11-24 20:23:31 +0800
commitee49aa68674e35c925ed2eaab82a5953703e0244 (patch)
tree4ee5f270c6b96bbe3c400a363898c89fdd43c376 /pom.xml
parent3603443e4e841b96f59483d71055732b672216be (diff)
[fix][bootstrap] 修复一些命名问题
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 16 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 8e62e76..9eb8960 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.geedgenetworks</groupId>
- <artifactId>groot-stream-platform</artifactId>
+ <artifactId>groot-stream</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
@@ -44,6 +44,7 @@
<junit.version>5.9.0</junit.version>
<flink.version>1.13.1</flink.version>
<flink-shaded-hadoop-2.version>2.7.5-8.0</flink-shaded-hadoop-2.version>
+ <hbase.version>2.2.3</hbase.version>
<scala.version>2.12</scala.version>
<opencsv.version>3.3</opencsv.version>
<jsonpath.version>2.4.0</jsonpath.version>
@@ -376,10 +377,21 @@
</dependency>
<dependency>
- <groupId>com.geedgenetworks</groupId>
- <artifactId>groot-hbase-client</artifactId>
- <version>${project.version}</version>
+ <groupId>org.apache.hbase</groupId>
+ <artifactId>hbase-client</artifactId>
+ <version>${hbase.version}</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
+ </exclusion>
+
+ </exclusions>
</dependency>
</dependencies>