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.2.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>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.codehaus.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. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-log4j12</artifactId>
  50. <version>${slf4j-api.version}</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- junit -->
  54. <dependency>
  55. <groupId>junit</groupId>
  56. <artifactId>junit</artifactId>
  57. <version>${junit.version}</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- javax.annotation-api -->
  61. <dependency>
  62. <groupId>javax.annotation</groupId>
  63. <artifactId>javax.annotation-api</artifactId>
  64. <version>${javax.annotation-api.version}</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. </dependencies>
  68. </project>