pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.pavis</groupId>
  6. <artifactId>pavis-plugin</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>pavis-plugin-schedule</artifactId>
  10. <description>任务调度插件</description>
  11. <dependencies>
  12. <!-- SnailJob(灵活,可靠和快速的分布式任务重试和分布式任务调度平台) -->
  13. <dependency>
  14. <groupId>com.aizuda</groupId>
  15. <artifactId>snail-job-client-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.aizuda</groupId>
  19. <artifactId>snail-job-client-retry-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.aizuda</groupId>
  23. <artifactId>snail-job-client-job-core</artifactId>
  24. </dependency>
  25. <!-- OpenFeign(一种基于 Spring Cloud 的声明式 REST 客户端,它简化了与 HTTP 服务交互的过程) -->
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-openfeign</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>