1
0

pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>datax-all</artifactId>
  7. <groupId>com.alibaba.datax</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ocswriter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba.datax</groupId>
  15. <artifactId>datax-common</artifactId>
  16. <version>${datax-project-version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba.datax</groupId>
  20. <artifactId>datax-core</artifactId>
  21. <version>${datax-project-version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.slf4j</groupId>
  25. <artifactId>slf4j-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.testng</groupId>
  29. <artifactId>testng</artifactId>
  30. <version>6.8.8</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.easymock</groupId>
  35. <artifactId>easymock</artifactId>
  36. <version>3.3.1</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.simple-spring-memcached</groupId>
  41. <artifactId>spymemcached</artifactId>
  42. <version>2.8.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.guava</groupId>
  46. <artifactId>guava</artifactId>
  47. <version>16.0.1</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <!-- compiler plugin -->
  53. <plugin>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <configuration>
  56. <source>${jdk-version}</source>
  57. <target>${jdk-version}</target>
  58. <encoding>${project-sourceEncoding}</encoding>
  59. </configuration>
  60. <version>3.2</version>
  61. </plugin>
  62. <!-- assembly plugin -->
  63. <plugin>
  64. <artifactId>maven-assembly-plugin</artifactId>
  65. <configuration>
  66. <descriptors>
  67. <descriptor>src/main/assembly/package.xml</descriptor>
  68. </descriptors>
  69. <finalName>datax</finalName>
  70. </configuration>
  71. <executions>
  72. <execution>
  73. <id>dwzip</id>
  74. <phase>package</phase>
  75. <goals>
  76. <goal>single</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>