mirror of
https://github.com/alibaba/DataX.git
synced 2025-05-02 14:41:44 +08:00
127 lines
4.4 KiB
XML
127 lines
4.4 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>datax-all</artifactId>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.alibaba.datax.tdenginewriter</groupId>
|
|
<artifactId>tdenginewriter</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.taosdata.jdbc</groupId>
|
|
<artifactId>taos-jdbcdriver</artifactId>
|
|
<version>2.0.39</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3-version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<artifactId>datax-common</artifactId>
|
|
<version>${datax-project-version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<artifactId>datax-core</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.49</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- 添加 dm8 jdbc jar 包依赖-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.dameng</groupId>-->
|
|
<!-- <artifactId>dm-jdbc</artifactId>-->
|
|
<!-- <version>1.8</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/src/test/resources/DmJdbcDriver18.jar-->
|
|
<!-- </systemPath>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- compiler plugin -->
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${jdk-version}</source>
|
|
<target>${jdk-version}</target>
|
|
<encoding>${project-sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/package.xml</descriptor>
|
|
</descriptors>
|
|
<finalName>datax</finalName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>dwzip</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12.4</version>
|
|
<configuration>
|
|
<!-- 包含哪些测试用例 -->
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
<!-- 不包含哪些测试用例 -->
|
|
<excludes>
|
|
</excludes>
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |