pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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>odpsreader</artifactId>
  10. <name>odpsreader</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>com.google.guava</groupId>
  34. <artifactId>guava</artifactId>
  35. <version>16.0.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.bouncycastle</groupId>
  39. <artifactId>bcprov-jdk15on</artifactId>
  40. <version>1.52</version>
  41. <scope>system</scope>
  42. <systemPath>${basedir}/src/main/libs/bcprov-jdk15on-1.52.jar</systemPath>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.aliyun.odps</groupId>
  46. <artifactId>odps-sdk-core</artifactId>
  47. <version>0.19.3-public</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mockito</groupId>
  51. <artifactId>mockito-core</artifactId>
  52. <version>1.8.5</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.powermock</groupId>
  57. <artifactId>powermock-api-mockito</artifactId>
  58. <version>1.4.10</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.powermock</groupId>
  63. <artifactId>powermock-module-junit4</artifactId>
  64. <version>1.4.10</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mockito</groupId>
  69. <artifactId>mockito-core</artifactId>
  70. <version>1.8.5</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.powermock</groupId>
  75. <artifactId>powermock-api-mockito</artifactId>
  76. <version>1.4.10</version>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.powermock</groupId>
  81. <artifactId>powermock-module-junit4</artifactId>
  82. <version>1.4.10</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mockito</groupId>
  87. <artifactId>mockito-core</artifactId>
  88. <version>1.8.5</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.powermock</groupId>
  93. <artifactId>powermock-api-mockito</artifactId>
  94. <version>1.4.10</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.powermock</groupId>
  99. <artifactId>powermock-module-junit4</artifactId>
  100. <version>1.4.10</version>
  101. <scope>test</scope>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <!-- compiler plugin -->
  107. <plugin>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <configuration>
  110. <source>1.6</source>
  111. <target>1.6</target>
  112. <encoding>${project-sourceEncoding}</encoding>
  113. </configuration>
  114. </plugin>
  115. <!-- assembly plugin -->
  116. <plugin>
  117. <artifactId>maven-assembly-plugin</artifactId>
  118. <configuration>
  119. <descriptors>
  120. <descriptor>src/main/assembly/package.xml</descriptor>
  121. </descriptors>
  122. <finalName>datax</finalName>
  123. </configuration>
  124. <executions>
  125. <execution>
  126. <id>dwzip</id>
  127. <phase>package</phase>
  128. <goals>
  129. <goal>single</goal>
  130. </goals>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>