gtsoft-snail-job-server/x-retry-client-starter/pom.xml

38 lines
1.2 KiB
XML
Raw Normal View History

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>
2022-07-06 22:06:16 +08:00
<groupId>com.byteblogs</groupId>
2023-01-14 21:02:18 +08:00
<artifactId>x-retry</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>x-retry-client-starter</artifactId>
<name>x-retry-client-starter</name>
<description>x-retry-client-starter</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
2022-07-06 22:06:16 +08:00
<groupId>com.byteblogs</groupId>
2023-01-14 21:02:18 +08:00
<artifactId>x-retry-client-core</artifactId>
</dependency>
</dependencies>
</project>