pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-job</artifactId>
  12. <description>
  13. ruoyi-common-job 定时任务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-autoconfigure</artifactId>
  19. </dependency>
  20. <!-- 服务发现组件 -->
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-commons</artifactId>
  24. </dependency>
  25. <!--PowerJob-->
  26. <dependency>
  27. <groupId>tech.powerjob</groupId>
  28. <artifactId>powerjob-worker</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <artifactId>powerjob-remote-impl-akka</artifactId>
  32. <groupId>tech.powerjob</groupId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>tech.powerjob</groupId>
  38. <artifactId>powerjob-official-processors</artifactId>
  39. </dependency>
  40. <!-- EasyRetry Client -->
  41. <dependency>
  42. <groupId>com.aizuda</groupId>
  43. <artifactId>easy-retry-client-starter</artifactId>
  44. <version>${easyretry.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.aizuda</groupId>
  48. <artifactId>easy-retry-client-core</artifactId>
  49. <version>${easyretry.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.aizuda</groupId>
  53. <artifactId>easy-retry-client-job-core</artifactId>
  54. <version>${easyretry.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.dromara</groupId>
  62. <artifactId>ruoyi-common-core</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>