mirror of
https://github.com/WeiYe-Jing/datax-web.git
synced 2026-07-06 21:09:11 +08:00
71 lines
2.5 KiB
XML
71 lines
2.5 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.wugui</groupId>
|
|
<version>2.1.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>datax-transformer</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<artifactId>datax-core</artifactId>
|
|
<version>${datax.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<artifactId>datax-common</artifactId>
|
|
<version>${datax.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.datax</groupId>
|
|
<artifactId>datax-transformer</artifactId>
|
|
<version>${datax.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.9.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<finalName>datax-transformer</finalName>
|
|
<descriptors>
|
|
<descriptor>package.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>${maven.compiler.source}</source>
|
|
<target>${maven.compiler.source}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |