pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.xxl</groupId>
  6. <artifactId>xxl-job</artifactId>
  7. <version>${xxl-job.version}</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <version>${xxl-job.version}</version>
  11. <dependencies>
  12. <!-- servlet -->
  13. <dependency>
  14. <groupId>javax.servlet</groupId>
  15. <artifactId>servlet-api</artifactId>
  16. <version>2.5</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>javax.servlet.jsp</groupId>
  21. <artifactId>jsp-api</artifactId>
  22. <version>2.1</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <!-- jetty -->
  26. <dependency>
  27. <groupId>org.eclipse.jetty</groupId>
  28. <artifactId>jetty-server</artifactId>
  29. <version>7.6.19.v20160209</version>
  30. </dependency>
  31. <!-- slf4j -->
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-log4j12</artifactId>
  35. <version>1.7.5</version>
  36. </dependency>
  37. <!-- jackson -->
  38. <dependency>
  39. <groupId>org.codehaus.jackson</groupId>
  40. <artifactId>jackson-mapper-asl</artifactId>
  41. <version>1.9.13</version>
  42. </dependency>
  43. <!-- httpclient -->
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>httpclient</artifactId>
  47. <version>4.3.6</version>
  48. </dependency>
  49. <!-- spring-context -->
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. <version>${spring.version}</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <!-- groovy-all -->
  57. <dependency>
  58. <groupId>org.codehaus.groovy</groupId>
  59. <artifactId>groovy-all</artifactId>
  60. <version>2.4.5</version>
  61. </dependency>
  62. </dependencies>
  63. </project>