pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.zlt</groupId>
  6. <artifactId>zlt-job</artifactId>
  7. <version>2.7.0</version>
  8. </parent>
  9. <artifactId>job-core</artifactId>
  10. <packaging>jar</packaging>
  11. <dependencies>
  12. <!-- xxl-rpc-core -->
  13. <dependency>
  14. <groupId>com.xuxueli</groupId>
  15. <artifactId>xxl-rpc-core</artifactId>
  16. <version>${xxl-rpc.version}</version>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>io.netty</groupId>
  20. <artifactId>netty-all</artifactId>
  21. </exclusion>
  22. <exclusion>
  23. <groupId>org.apache.commons</groupId>
  24. <artifactId>commons-pool2</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.eclipse.jetty</groupId>
  30. <artifactId>jetty-server</artifactId>
  31. <version>${jetty-server.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.eclipse.jetty</groupId>
  35. <artifactId>jetty-client</artifactId>
  36. <version>${jetty-server.version}</version>
  37. </dependency>
  38. <!-- groovy-all -->
  39. <dependency>
  40. <groupId>org.codehaus.groovy</groupId>
  41. <artifactId>groovy</artifactId>
  42. <version>${groovy.version}</version>
  43. </dependency>
  44. <!-- commons-exec -->
  45. <dependency>
  46. <groupId>org.apache.commons</groupId>
  47. <artifactId>commons-exec</artifactId>
  48. <version>${commons-exec.version}</version>
  49. </dependency>
  50. <!-- jackson -->
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.core</groupId>
  53. <artifactId>jackson-databind</artifactId>
  54. <version>${jackson.version}</version>
  55. </dependency>
  56. <!-- spring-context -->
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-context</artifactId>
  60. <version>${spring.version}</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. </dependencies>
  64. </project>