diff options
| author | wangkuan <[email protected]> | 2020-05-28 15:24:54 +0800 |
|---|---|---|
| committer | wangkuan <[email protected]> | 2020-05-28 15:24:54 +0800 |
| commit | 0b2953adcdcc326fc2055c4fc863e4e180c19741 (patch) | |
| tree | 40254a0dd212e58ba9a8216b6b5b9076dd7e188e /pom.xml | |
| parent | 05346f8ec73fe2efb89f88382dc3cc72b9ded9c0 (diff) | |
解决大文件不能存储的问题
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -10,7 +10,7 @@ </parent> <groupId>com.mesa</groupId> <artifactId>galaxy-report-service</artifactId> - <version>3.1</version> + <version>3.2</version> <name>galaxy-report-service</name> <description>Demo project for Spring Boot</description> @@ -141,6 +141,27 @@ <artifactId>zookeeper</artifactId> <version>3.4.9</version> </dependency> + <dependency> + <groupId>org.apache.hbase</groupId> + <artifactId>hbase-client</artifactId> + <version>2.2.3</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>2.7.1</version> + <exclusions> + <exclusion> + <artifactId>slf4j-log4j12</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + <exclusion> + <artifactId>log4j-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> + </dependency> + </dependencies> @@ -165,7 +186,7 @@ <forceTags>true</forceTags> <imageTags> - <imageTag>3.1</imageTag> + <imageTag>3.2</imageTag> </imageTags> <!--远程docker构建,供dockerfile使用--> <dockerHost>http://192.168.40.153:2375</dockerHost> |
