pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.alibaba.datax</groupId>
  6. <artifactId>datax-all</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>ftpreader</artifactId>
  10. <name>ftpreader</name>
  11. <description>FtpReader提供了读取指定ftp服务器文件功能,并可以根据用户配置的类型进行类型转换,建议开发、测试环境使用。</description>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.alibaba.datax</groupId>
  16. <artifactId>datax-common</artifactId>
  17. <version>${datax-project-version}</version>
  18. <exclusions>
  19. <exclusion>
  20. <artifactId>slf4j-log4j12</artifactId>
  21. <groupId>org.slf4j</groupId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba.datax</groupId>
  27. <artifactId>plugin-unstructured-storage-util</artifactId>
  28. <version>${datax-project-version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.slf4j</groupId>
  32. <artifactId>slf4j-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>ch.qos.logback</groupId>
  36. <artifactId>logback-classic</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>16.0.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.jcraft</groupId>
  45. <artifactId>jsch</artifactId>
  46. <version>0.1.54</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-net</groupId>
  50. <artifactId>commons-net</artifactId>
  51. <version>3.3</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <!-- compiler plugin -->
  57. <plugin>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <configuration>
  60. <source>${jdk-version}</source>
  61. <target>${jdk-version}</target>
  62. <encoding>${project-sourceEncoding}</encoding>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-assembly-plugin</artifactId>
  67. <configuration>
  68. <descriptors>
  69. <descriptor>src/main/assembly/package.xml</descriptor>
  70. </descriptors>
  71. <finalName>datax</finalName>
  72. </configuration>
  73. <executions>
  74. <execution>
  75. <id>dwzip</id>
  76. <phase>package</phase>
  77. <goals>
  78. <goal>single</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>