pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.xuxueli</groupId>
  7. <artifactId>integrated-job</artifactId>
  8. <version>2.3.0</version>
  9. </parent>
  10. <artifactId>job-core</artifactId>
  11. <packaging>jar</packaging>
  12. <name>${project.artifactId}</name>
  13. <description>A distributed task scheduling framework.</description>
  14. <url>https://www.xuxueli.com/</url>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.persagy</groupId>
  18. <artifactId>integrated-common-spring-boot-starter</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>javax.annotation</groupId>
  22. <artifactId>javax.annotation-api</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <!-- ********************** embed server: netty + gson ********************** -->
  27. <dependency>
  28. <groupId>io.netty</groupId>
  29. <artifactId>netty-all</artifactId>
  30. <!-- <version>${netty-all.version}</version> -->
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.code.gson</groupId>
  34. <artifactId>gson</artifactId>
  35. <!-- <version>${gson.version}</version> -->
  36. </dependency>
  37. <!-- ********************** plugin ********************** -->
  38. <!-- groovy-all -->
  39. <dependency>
  40. <groupId>org.codehaus.groovy</groupId>
  41. <artifactId>groovy</artifactId>
  42. <version>${groovy.version}</version>
  43. </dependency>
  44. <!-- spring-context -->
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context</artifactId>
  48. <!-- <version>${spring.version}</version> -->
  49. </dependency>
  50. <!-- ********************** base ********************** -->
  51. <!-- javax.annotation-api -->
  52. <dependency>
  53. <groupId>javax.annotation</groupId>
  54. <artifactId>javax.annotation-api</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>