pom.xml 2.2 KB

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