pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>ftpwriter</artifactId>
  10. <name>ftpwriter</name>
  11. <description>FtpWriter提供了写数据到指定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. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <!-- compiler plugin -->
  62. <plugin>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <configuration>
  65. <source>${jdk-version}</source>
  66. <target>${jdk-version}</target>
  67. <encoding>${project-sourceEncoding}</encoding>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-assembly-plugin</artifactId>
  72. <configuration>
  73. <descriptors>
  74. <descriptor>src/main/assembly/package.xml</descriptor>
  75. </descriptors>
  76. <finalName>datax</finalName>
  77. </configuration>
  78. <executions>
  79. <execution>
  80. <id>dwzip</id>
  81. <phase>package</phase>
  82. <goals>
  83. <goal>single</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>