pom.xml 2.2 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.xuxueli</groupId>
  6. <artifactId>xxl-job</artifactId>
  7. <version>2.3.1-SNAPSHOT</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-all</artifactId>
  19. <version>${netty-all.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.netty</groupId>
  23. <artifactId>netty-all</artifactId>
  24. <version>4.1.33.Final</version>
  25. <exclusions>
  26. <!-- 排除这个特定版本的 netty-all -->
  27. <exclusion>
  28. <groupId>io.netty</groupId>
  29. <artifactId>netty-all</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.code.gson</groupId>
  35. <artifactId>gson</artifactId>
  36. <version>${gson.version}</version>
  37. </dependency>
  38. <!-- ********************** plugin ********************** -->
  39. <!-- groovy-all -->
  40. <dependency>
  41. <groupId>org.codehaus.groovy</groupId>
  42. <artifactId>groovy</artifactId>
  43. <version>${groovy.version}</version>
  44. </dependency>
  45. <!-- spring-context -->
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-context</artifactId>
  49. <version>${spring.version}</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <!-- ********************** base ********************** -->
  53. <!-- slf4j -->
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-api</artifactId>
  57. <version>${slf4j-api.version}</version>
  58. </dependency>
  59. <!-- javax.annotation-api -->
  60. <dependency>
  61. <groupId>javax.annotation</groupId>
  62. <artifactId>javax.annotation-api</artifactId>
  63. <version>${javax.annotation-api.version}</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. </dependencies>
  67. </project>