pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>odpswriter</artifactId>
  10. <name>odpswriter</name>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba.datax</groupId>
  15. <artifactId>datax-common</artifactId>
  16. <version>${datax-project-version}</version>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>slf4j-log4j12</artifactId>
  20. <groupId>org.slf4j</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.slf4j</groupId>
  26. <artifactId>slf4j-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>ch.qos.logback</groupId>
  30. <artifactId>logback-classic</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.bouncycastle</groupId>
  34. <artifactId>bcprov-jdk15on</artifactId>
  35. <version>1.52</version>
  36. <scope>system</scope>
  37. <systemPath>${basedir}/src/main/libs/bcprov-jdk15on-1.52.jar</systemPath>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.aliyun.odps</groupId>
  41. <artifactId>odps-sdk-core</artifactId>
  42. <version>0.19.3-public</version>
  43. </dependency>
  44. <!-- httpclient begin -->
  45. <dependency>
  46. <groupId>commons-httpclient</groupId>
  47. <artifactId>commons-httpclient</artifactId>
  48. <version>3.1</version>
  49. </dependency>
  50. <!-- httpclient end -->
  51. <dependency>
  52. <groupId>org.mockito</groupId>
  53. <artifactId>mockito-core</artifactId>
  54. <version>1.8.5</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.powermock</groupId>
  59. <artifactId>powermock-api-mockito</artifactId>
  60. <version>1.4.10</version>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.powermock</groupId>
  65. <artifactId>powermock-module-junit4</artifactId>
  66. <version>1.4.10</version>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <!-- compiler plugin -->
  73. <plugin>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <configuration>
  76. <source>1.6</source>
  77. <target>1.6</target>
  78. <encoding>${project-sourceEncoding}</encoding>
  79. </configuration>
  80. </plugin>
  81. <!-- assembly plugin -->
  82. <plugin>
  83. <artifactId>maven-assembly-plugin</artifactId>
  84. <configuration>
  85. <descriptors>
  86. <descriptor>src/main/assembly/package.xml</descriptor>
  87. </descriptors>
  88. <finalName>datax</finalName>
  89. </configuration>
  90. <executions>
  91. <execution>
  92. <id>dwzip</id>
  93. <phase>package</phase>
  94. <goals>
  95. <goal>single</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>