pom.xml 2.0 KB

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