2023-01-14 21:02:18 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-starter</artifactId>
|
|
|
|
<name>snail-job-client-starter</name>
|
|
|
|
<description>snail-job-client-starter</description>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2023-07-17 18:38:37 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>provided</scope>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-retry-core</artifactId>
|
2023-09-29 23:13:45 +08:00
|
|
|
<scope>provided</scope>
|
2025-01-10 01:11:39 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>error_prone_annotations</artifactId>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2023-09-29 23:13:45 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
<artifactId>snail-job-client-job-core</artifactId>
|
2023-09-29 23:13:45 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
2023-07-17 18:38:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|