pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <!--PowerJob-->
  21. <dependency>
  22. <groupId>tech.powerjob</groupId>
  23. <artifactId>powerjob-worker-spring-boot-starter</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>powerjob-remote-impl-akka</artifactId>
  27. <groupId>tech.powerjob</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>tech.powerjob</groupId>
  33. <artifactId>powerjob-official-processors</artifactId>
  34. </dependency>
  35. <!-- EasyRetry client -->
  36. <dependency>
  37. <groupId>com.aizuda</groupId>
  38. <artifactId>easy-retry-client-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aizuda</groupId>
  42. <artifactId>easy-retry-client-core</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.aizuda</groupId>
  46. <artifactId>easy-retry-client-job-core</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.dromara</groupId>
  54. <artifactId>ruoyi-common-core</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>