pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <!-- EasyRetry client -->
  21. <dependency>
  22. <groupId>com.aizuda</groupId>
  23. <artifactId>easy-retry-client-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aizuda</groupId>
  27. <artifactId>easy-retry-client-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.aizuda</groupId>
  31. <artifactId>easy-retry-client-job-core</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.dromara</groupId>
  39. <artifactId>ruoyi-common-core</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>