pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>top.continew</groupId>
  6. <artifactId>continew-plugin</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>continew-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. <!-- Spring WebFlux(异步非阻塞 Web 框架) -->
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-webflux</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.projectreactor.netty</groupId>
  32. <artifactId>reactor-netty-http</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>