pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.wugui</groupId>
  8. <artifactId>datax-web</artifactId>
  9. <version>2.1.2</version>
  10. </parent>
  11. <artifactId>datax-core</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <dependencies>
  17. <!-- xxl-rpc-core -->
  18. <dependency>
  19. <groupId>com.wugui</groupId>
  20. <artifactId>datax-rpc</artifactId>
  21. <version>${project.parent.version}</version>
  22. </dependency>
  23. <!-- groovy-all -->
  24. <dependency>
  25. <groupId>org.codehaus.groovy</groupId>
  26. <artifactId>groovy</artifactId>
  27. <version>${groovy.version}</version>
  28. </dependency>
  29. <!-- spring-context -->
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-context</artifactId>
  33. <version>${spring.version}</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. <!-- junit -->
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>${junit.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.java.dev.jna</groupId>
  45. <artifactId>jna</artifactId>
  46. <version>${jna.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. <version>${commons-lang3.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>${hutool.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.oshi</groupId>
  60. <artifactId>oshi-core</artifactId>
  61. <version>${oshi.core.version}</version>
  62. <exclusions>
  63. <exclusion>
  64. <artifactId>jna</artifactId>
  65. <groupId>net.java.dev.jna</groupId>
  66. </exclusion>
  67. <exclusion>
  68. <artifactId>slf4j-api</artifactId>
  69. <groupId>org.slf4j</groupId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>javax.annotation</groupId>
  75. <artifactId>javax.annotation-api</artifactId>
  76. <version>1.3.2</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <version>3.8.1</version>
  86. <configuration>
  87. <source>${java.version}</source>
  88. <target>${java.version}</target>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>