pom.xml 1.9 KB

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