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>
|
|
|
|
<artifactId>easy-retry</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2023-04-18 23:03:33 +08:00
|
|
|
<artifactId>easy-retry-client-core</artifactId>
|
|
|
|
<name>easy-retry-client-core</name>
|
|
|
|
<description>easy-retry-client-core</description>
|
2023-01-14 21:02:18 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2023-09-01 22:33:26 +08:00
|
|
|
<java.version>17</java.version>
|
2023-01-14 21:02:18 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<!-- guava retry -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-common-core</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.caucho</groupId>
|
|
|
|
<artifactId>hessian</artifactId>
|
2023-04-19 22:46:51 +08:00
|
|
|
<version>4.0.66</version>
|
2023-09-10 10:59:03 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
2023-09-10 23:12:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
<version>5.3.3</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>QLExpress</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-common-server-api</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-04-18 23:03:33 +08:00
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
<artifactId>easy-retry-common-client-api</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|