diff options
| author | doufenghu <[email protected]> | 2023-10-28 19:59:04 +0800 |
|---|---|---|
| committer | doufenghu <[email protected]> | 2023-10-28 19:59:04 +0800 |
| commit | a8c6bfc7a8252837a2da29dd16bc5a15d280d86d (patch) | |
| tree | 28724184fca4deba64e85c75a0face56f70282b5 /groot-common/pom.xml | |
| parent | 27d6b6e7214007e727f11cd2adc6067b147bb393 (diff) | |
[feature][test]支持local模式,方便debug调试,相关HBase调用函数暂移除注册列表
Diffstat (limited to 'groot-common/pom.xml')
| -rw-r--r-- | groot-common/pom.xml | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/groot-common/pom.xml b/groot-common/pom.xml index 1f88ceb..b384ad6 100644 --- a/groot-common/pom.xml +++ b/groot-common/pom.xml @@ -10,6 +10,10 @@ <artifactId>groot-common</artifactId> + <properties> + + </properties> + <dependencies> <dependency> @@ -58,9 +62,23 @@ </dependency> <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - <scope>provided</scope> + <groupId>com.alibaba.nacos</groupId> + <artifactId>nacos-client</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-shaded-hadoop-2</artifactId> + <exclusions> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -77,14 +95,17 @@ </exclusion> </exclusions> </dependency> + <dependency> - <groupId>com.alibaba.nacos</groupId> - <artifactId>nacos-client</artifactId> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> </dependency> + + <!-- flink --> <dependency> <groupId>org.apache.flink</groupId> - <artifactId>flink-table-api-java-bridge_2.12</artifactId> + <artifactId>flink-table-api-java-bridge_${scala.version}</artifactId> <scope>provided</scope> </dependency> |
