mirror of https://github.com/alibaba/DataX.git
				
				
				
			
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
| <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.alibaba.datax</groupId>
 | ||
| 		<artifactId>datax-all</artifactId>
 | ||
| 		<version>0.0.1-SNAPSHOT</version>
 | ||
| 	</parent>
 | ||
| 	<artifactId>ftpreader</artifactId>
 | ||
| 	<name>ftpreader</name>
 | ||
| 	<description>FtpReader提供了读取指定ftp服务器文件功能,并可以根据用户配置的类型进行类型转换,建议开发、测试环境使用。</description>
 | ||
| 	<packaging>jar</packaging>
 | ||
| 
 | ||
| 	<dependencies>
 | ||
| 		<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>com.alibaba.datax</groupId>
 | ||
| 			<artifactId>plugin-unstructured-storage-util</artifactId>
 | ||
| 			<version>${datax-project-version}</version>
 | ||
| 		</dependency>
 | ||
| 		<dependency>
 | ||
| 			<groupId>org.slf4j</groupId>
 | ||
| 			<artifactId>slf4j-api</artifactId>
 | ||
| 		</dependency>
 | ||
| 		<dependency>
 | ||
| 			<groupId>ch.qos.logback</groupId>
 | ||
| 			<artifactId>logback-classic</artifactId>
 | ||
| 		</dependency>
 | ||
| 		<dependency>
 | ||
| 			<groupId>com.google.guava</groupId>
 | ||
| 			<artifactId>guava</artifactId>
 | ||
| 			<version>16.0.1</version>
 | ||
| 		</dependency>
 | ||
| 
 | ||
| 		<dependency>
 | ||
| 			<groupId>com.jcraft</groupId>
 | ||
| 			<artifactId>jsch</artifactId>
 | ||
| 			<version>0.1.51</version>
 | ||
| 		</dependency>
 | ||
| 		<dependency>
 | ||
| 			<groupId>commons-net</groupId>
 | ||
| 			<artifactId>commons-net</artifactId>
 | ||
| 			<version>3.3</version>
 | ||
| 		</dependency>
 | ||
| 
 | ||
| 
 | ||
| 
 | ||
| 	</dependencies>
 | ||
| 
 | ||
| 	<build>
 | ||
| 		<plugins>
 | ||
| 			<!-- compiler plugin -->
 | ||
| 			<plugin>
 | ||
| 				<artifactId>maven-compiler-plugin</artifactId>
 | ||
| 				<configuration>
 | ||
| 					<source>1.6</source>
 | ||
| 					<target>1.6</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>
 | ||
| 		</plugins>
 | ||
| 	</build>
 | ||
| 
 | ||
| </project>
 |