|
|
@@ -0,0 +1,843 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>com.wugui</groupId>
|
|
|
+ <artifactId>datax-web</artifactId>
|
|
|
+ <version>2.1.2</version>
|
|
|
+ </parent>
|
|
|
+ <artifactId>datax-admin</artifactId>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+ <properties>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 引入该 spring-cloud-context.jar 使 bootstrap.properties 配置文件即可生效 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-context</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- starter-actuator -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Mybatis Plus -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-generator</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus</artifactId>
|
|
|
+ <version>${mybatisplus.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 接口管理 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>${swagger.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
+ <version>${swagger-models.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
+ <version>${swagger-bootstrap-ui.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.postgresql</groupId>
|
|
|
+ <artifactId>postgresql</artifactId>
|
|
|
+ <version>${postgresql.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
+ <artifactId>ojdbc6</artifactId>
|
|
|
+ <version>11.2.0.3</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${basedir}/src/main/lib/ojdbc6-11.2.0.3.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
+ <artifactId>sqljdbc4</artifactId>
|
|
|
+ <version>4.0</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${basedir}/src/main/lib/sqljdbc4-4.0.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <version>${slf4j-api.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <version>${logback-classic.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql-connector.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- datax-core -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.wugui</groupId>
|
|
|
+ <artifactId>datax-core</artifactId>
|
|
|
+ <version>${project.parent.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>${junit.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- mail-starter -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
+ <version>${jjwt.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <version>29.0-jre</version>
|
|
|
+ </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>com.sun.jersey</artifactId>
|
|
|
+ <groupId>jersey-json</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsr305</artifactId>
|
|
|
+ <groupId>com.google.code.findbugs</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jettison</artifactId>
|
|
|
+ <groupId>org.codehaus.jettison</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-core-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-mapper-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-cli</artifactId>
|
|
|
+ <groupId>commons-cli</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>curator-framework</artifactId>
|
|
|
+ <groupId>org.apache.curator</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>log4j</artifactId>
|
|
|
+ <groupId>log4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>netty</artifactId>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsp-api</artifactId>
|
|
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.hive</groupId>
|
|
|
+ <artifactId>hive-jdbc</artifactId>
|
|
|
+ <version>${hive.jdbc.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsr305</artifactId>
|
|
|
+ <groupId>com.google.code.findbugs</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jettison</artifactId>
|
|
|
+ <groupId>org.codehaus.jettison</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-cli</artifactId>
|
|
|
+ <groupId>commons-cli</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>curator-client</artifactId>
|
|
|
+ <groupId>org.apache.curator</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-compress</artifactId>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-hdfs</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>snappy</artifactId>
|
|
|
+ <groupId>org.iq80.snappy</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>antlr-runtime</artifactId>
|
|
|
+ <groupId>org.antlr</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-client</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>libthrift</artifactId>
|
|
|
+ <groupId>org.apache.thrift</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>twill-common</artifactId>
|
|
|
+ <groupId>org.apache.twill</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>twill-core</artifactId>
|
|
|
+ <groupId>org.apache.twill</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>twill-discovery-api</artifactId>
|
|
|
+ <groupId>org.apache.twill</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>twill-discovery-core</artifactId>
|
|
|
+ <groupId>org.apache.twill</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>twill-zookeeper</artifactId>
|
|
|
+ <groupId>org.apache.twill</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>avro</artifactId>
|
|
|
+ <groupId>org.apache.avro</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>curator-recipes</artifactId>
|
|
|
+ <groupId>org.apache.curator</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-common</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-hadoop-compat</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-hadoop2-compat</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-server</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>curator-framework</artifactId>
|
|
|
+ <groupId>org.apache.curator</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guice-servlet</artifactId>
|
|
|
+ <groupId>com.google.inject.extensions</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-client</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-api</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-core-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-mapper-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-jaxrs</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-xc</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jersey-client</artifactId>
|
|
|
+ <groupId>com.sun.jersey</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jamon-runtime</artifactId>
|
|
|
+ <groupId>org.jamon</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-annotations</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jersey-guice</artifactId>
|
|
|
+ <groupId>com.sun.jersey.contribs</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>log4j-slf4j-impl</artifactId>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hive-shims-common</artifactId>
|
|
|
+ <groupId>org.apache.hive.shims</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>javax.servlet</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsp-api</artifactId>
|
|
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jasper-compiler</artifactId>
|
|
|
+ <groupId>tomcat</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-all</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ <artifactId>hadoop-hdfs</artifactId>
|
|
|
+ <version>${hadoop.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-cli</artifactId>
|
|
|
+ <groupId>commons-cli</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-core-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-mapper-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ <artifactId>hbase-client</artifactId>
|
|
|
+ <version>${hbase.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-auth</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-mapreduce-client-core</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-annotations</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-protocol</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jackson-mapper-asl</artifactId>
|
|
|
+ <groupId>org.codehaus.jackson</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.phoenix</groupId>
|
|
|
+ <artifactId>phoenix-core</artifactId>
|
|
|
+ <version>${phoenix.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-cli</artifactId>
|
|
|
+ <groupId>commons-cli</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>avro</artifactId>
|
|
|
+ <groupId>org.apache.avro</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guice</artifactId>
|
|
|
+ <groupId>com.google.inject</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-api</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-auth</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jersey-core</artifactId>
|
|
|
+ <groupId>com.sun.jersey</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guice-servlet</artifactId>
|
|
|
+ <groupId>com.google.inject.extensions</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jersey-server</artifactId>
|
|
|
+ <groupId>com.sun.jersey</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jersey-json</artifactId>
|
|
|
+ <groupId>com.sun.jersey</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>netty</artifactId>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-client</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-mapreduce-client-core</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>zookeeper</artifactId>
|
|
|
+ <groupId>org.apache.zookeeper</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-math3</artifactId>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-annotations</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-hdfs</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-client</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hadoop-yarn-server-common</artifactId>
|
|
|
+ <groupId>org.apache.hadoop</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>javax.ws.rs-api</artifactId>
|
|
|
+ <groupId>javax.ws.rs</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>htrace-core</artifactId>
|
|
|
+ <groupId>org.apache.htrace</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jline</artifactId>
|
|
|
+ <groupId>jline</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>fastutil</artifactId>
|
|
|
+ <groupId>it.unimi.dsi</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jsr305</artifactId>
|
|
|
+ <groupId>com.google.code.findbugs</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-common</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>hbase-server</artifactId>
|
|
|
+ <groupId>org.apache.hbase</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-io</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-http</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-security</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-server</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-servlet</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>jetty-webapp</artifactId>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mongodb</groupId>
|
|
|
+ <artifactId>mongo-java-driver</artifactId>
|
|
|
+ <version>${mongo-java-driver.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>ru.yandex.clickhouse</groupId>
|
|
|
+ <artifactId>clickhouse-jdbc</artifactId>
|
|
|
+ <version>0.2.4</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*.yml</exclude>
|
|
|
+ <exclude>**/*.properties</exclude>
|
|
|
+ <exclude>**/*.sh</exclude>
|
|
|
+ <exclude>**/*.xml</exclude>
|
|
|
+ </excludes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>exec-maven-plugin</artifactId>
|
|
|
+ <version>1.4.0</version>
|
|
|
+ <executions>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <version>2.2.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>assemble</id>
|
|
|
+ <goals>
|
|
|
+ <goal>single</goal>
|
|
|
+ </goals>
|
|
|
+ <!-- install -->
|
|
|
+ <phase>install</phase>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <appendAssemblyId>false</appendAssemblyId>
|
|
|
+ <attach>false</attach>
|
|
|
+ <descriptors>
|
|
|
+ <descriptor>${basedir}/src/main/assembly/deploy.xml</descriptor>
|
|
|
+ </descriptors>
|
|
|
+ <finalName>${project.artifactId}_${project.version}_1</finalName>
|
|
|
+ <outputDirectory>${project.parent.basedir}/packages</outputDirectory>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+
|
|
|
+ </build>
|
|
|
+
|
|
|
+
|
|
|
+</project>
|