pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.4.0</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>A distributed task scheduling framework.</description>
  13. <url>https://www.xuxueli.com/</url>
  14. <dependencies>
  15. <!-- ********************** embed server: netty + gson ********************** -->
  16. <dependency>
  17. <groupId>io.netty</groupId>
  18. <artifactId>netty-codec-http</artifactId>
  19. <version>${netty.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.code.gson</groupId>
  23. <artifactId>gson</artifactId>
  24. <version>${gson.version}</version>
  25. </dependency>
  26. <!-- ********************** plugin ********************** -->
  27. <!-- groovy-all -->
  28. <dependency>
  29. <groupId>org.apache.groovy</groupId>
  30. <artifactId>groovy</artifactId>
  31. <version>${groovy.version}</version>
  32. </dependency>
  33. <!-- spring-context -->
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context</artifactId>
  37. <version>${spring.version}</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <!-- ********************** base ********************** -->
  41. <!-- slf4j -->
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <version>${slf4j-api.version}</version>
  46. </dependency>
  47. <!-- javax.annotation-api -->
  48. <dependency>
  49. <groupId>javax.annotation</groupId>
  50. <artifactId>javax.annotation-api</artifactId>
  51. <version>${javax.annotation-api.version}</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>