2023-01-31 12:01:41 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-31 12:01:41 +08:00
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>ruoyi-common-job</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
ruoyi-common-job 定时任务
|
|
|
|
</description>
|
|
|
|
|
2023-06-16 14:58:36 +00:00
|
|
|
<dependencies>
|
2023-01-31 12:01:41 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-16 14:58:36 +00:00
|
|
|
<!--PowerJob-->
|
2023-01-31 12:01:41 +08:00
|
|
|
<dependency>
|
2023-06-16 14:58:36 +00:00
|
|
|
<groupId>tech.powerjob</groupId>
|
|
|
|
<artifactId>powerjob-worker-spring-boot-starter</artifactId>
|
2023-10-26 19:41:11 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>powerjob-remote-impl-akka</artifactId>
|
|
|
|
<groupId>tech.powerjob</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2023-06-16 14:58:36 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tech.powerjob</groupId>
|
|
|
|
<artifactId>powerjob-official-processors</artifactId>
|
2023-01-31 12:01:41 +08:00
|
|
|
</dependency>
|
|
|
|
|
2024-03-13 23:09:45 +08:00
|
|
|
<!-- EasyRetry client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-client-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-client-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-client-job-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-01-31 12:01:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-31 12:01:41 +08:00
|
|
|
<artifactId>ruoyi-common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|