pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>1.7.2</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <packaging>jar</packaging>
  11. <name>xxl-job-core</name>
  12. <description>A lightweight distributed task scheduling framework.</description>
  13. <url>http://www.xuxueli.com/</url>
  14. <properties>
  15. <spring.version>3.2.17.RELEASE</spring.version>
  16. </properties>
  17. <dependencies>
  18. <!-- servlet -->
  19. <dependency>
  20. <groupId>javax.servlet</groupId>
  21. <artifactId>javax.servlet-api</artifactId>
  22. <version>3.0.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>javax.servlet.jsp</groupId>
  26. <artifactId>jsp-api</artifactId>
  27. <version>2.2</version>
  28. </dependency>
  29. <!-- jetty -->
  30. <dependency>
  31. <groupId>org.eclipse.jetty</groupId>
  32. <artifactId>jetty-server</artifactId>
  33. <version>9.2.21.v20170120</version>
  34. </dependency>
  35. <!-- slf4j -->
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-api</artifactId>
  39. <version>1.7.21</version>
  40. </dependency>
  41. <!-- hessian -->
  42. <dependency>
  43. <groupId>com.caucho</groupId>
  44. <artifactId>hessian</artifactId>
  45. <version>4.0.38</version>
  46. </dependency>
  47. <!-- jackson -->
  48. <dependency>
  49. <groupId>org.codehaus.jackson</groupId>
  50. <artifactId>jackson-mapper-asl</artifactId>
  51. <version>1.9.13</version>
  52. </dependency>
  53. <!-- httpclient -->
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. <version>4.3.6</version>
  58. </dependency>
  59. <!-- spring-context -->
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-context</artifactId>
  63. <version>${spring.version}</version>
  64. </dependency>
  65. <!-- groovy-all -->
  66. <dependency>
  67. <groupId>org.codehaus.groovy</groupId>
  68. <artifactId>groovy-all</artifactId>
  69. <version>2.4.5</version>
  70. </dependency>
  71. <!-- commons-exec -->
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-exec</artifactId>
  75. <version>1.3</version>
  76. </dependency>
  77. </dependencies>
  78. </project>