1
0

pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>datax-common</artifactId>
  10. <name>datax-common</name>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.commons</groupId>
  15. <artifactId>commons-lang3</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.alibaba.fastjson2</groupId>
  19. <artifactId>fastjson2</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>commons-io</groupId>
  23. <artifactId>commons-io</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. <scope>test</scope>
  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>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. <version>4.4</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>fluent-hc</artifactId>
  47. <version>4.4</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-math3</artifactId>
  53. <version>3.1.1</version>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <resources>
  58. <resource>
  59. <directory>src/main/java</directory>
  60. <includes>
  61. <include>**/*.properties</include>
  62. </includes>
  63. </resource>
  64. </resources>
  65. <plugins>
  66. <plugin>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <configuration>
  69. <source>${jdk-version}</source>
  70. <target>${jdk-version}</target>
  71. <encoding>${project-sourceEncoding}</encoding>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>