diff options
| author | zhanghongqing <[email protected]> | 2020-02-11 15:23:31 +0800 |
|---|---|---|
| committer | zhanghongqing <[email protected]> | 2020-02-11 15:23:31 +0800 |
| commit | c496eb70a8772293869bb6b28163ca0c72ebe925 (patch) | |
| tree | 08cb67b3eacc847f04b5c2f4bc123ff5c3f78862 /pom.xml | |
| parent | 546a088a096cc16a76e166d70454cddd7b68b82b (diff) | |
提交曹辉,李玺康编写大数据预处理工具类,具体调用的方法详见FormatUtils.java
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 133 |
1 files changed, 127 insertions, 6 deletions
@@ -7,7 +7,7 @@ <artifactId>galaxy</artifactId> <packaging>jar</packaging> <name>galaxy</name> - <version>1.0.1</version> + <version>1.0.2</version> <description>galaxy tools for common</description> <url>http://www.zdjizhi.com/galaxy-tool</url> @@ -55,16 +55,30 @@ <repository> <id>nexus</id> <name>Team Nexus Repository</name> - <url>http://192.168.10.125:8099/content/groups/public</url> + <url>http://192.168.40.125:8099/content/groups/public</url> </repository> - - </repositories> + <distributionManagement> + <repository> + <id>nexus</id> + <name>releases</name> + <url>http://192.168.40.125:8099/content/repositories/releases/</url> + <uniqueVersion>true</uniqueVersion> + </repository> + <snapshotRepository> + <id>nexus</id> + <name>snapshots</name> + <url>http://192.168.40.125:8099/content/repositories/snapshots/</url> + </snapshotRepository> + </distributionManagement> + <properties> <java.version>1.8</java.version> <slf4j.version>1.7.7</slf4j.version> + <hbase.version>1.4.9</hbase.version> + <hadoop.version>2.7.1</hadoop.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> </properties> @@ -220,8 +234,115 @@ <version>2.5</version> <scope>provided</scope> </dependency> - - + <!-- 2.0 引入数据预处理工具依赖 --> + <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + <version>3.4.9</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> + + <dependency> + <groupId>org.apache.hbase</groupId> + <artifactId>hbase-client</artifactId> + <version>${hbase.version}</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> + + <dependency> + <groupId>org.apache.hbase</groupId> + <artifactId>hbase-server</artifactId> + <version>${hbase.version}</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> + + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-common</artifactId> + <version>${hadoop.version}</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> + + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>${hadoop.version}</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> + + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + <version>${hadoop.version}</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> + + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <version>5.3.2</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>18.0</version> + </dependency> </dependencies> |
