pom.xml 2.1 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.0-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. <!-- slf4j -->
  16. <dependency>
  17. <groupId>org.slf4j</groupId>
  18. <artifactId>slf4j-api</artifactId>
  19. <version>${slf4j-api.version}</version>
  20. </dependency>
  21. <!-- jetty -->
  22. <dependency>
  23. <groupId>org.eclipse.jetty</groupId>
  24. <artifactId>jetty-server</artifactId>
  25. <version>${jetty-server.version}</version>
  26. </dependency>
  27. <!-- httpclient -->
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpclient</artifactId>
  31. <version>${httpclient.version}</version>
  32. </dependency>
  33. <!-- hessian -->
  34. <dependency>
  35. <groupId>com.caucho</groupId>
  36. <artifactId>hessian</artifactId>
  37. <version>${hessian.version}</version>
  38. </dependency>
  39. <!-- groovy-all -->
  40. <dependency>
  41. <groupId>org.codehaus.groovy</groupId>
  42. <artifactId>groovy-all</artifactId>
  43. <version>${groovy-all.version}</version>
  44. </dependency>
  45. <!-- commons-exec -->
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-exec</artifactId>
  49. <version>${commons-exec.version}</version>
  50. </dependency>
  51. <!-- spring-context -->
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context</artifactId>
  55. <version>${spring.version}</version>
  56. </dependency>
  57. <!-- jackson -->
  58. <dependency>
  59. <groupId>com.fasterxml.jackson.core</groupId>
  60. <artifactId>jackson-databind</artifactId>
  61. <version>${jackson.version}</version>
  62. </dependency>
  63. </dependencies>
  64. </project>