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>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2023-09-01 22:33:26 +08:00
|
|
|
|
<version>3.1.3</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</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>
|
2023-04-18 23:03:33 +08:00
|
|
|
|
<name>easy-retry</name>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
2023-04-18 23:03:33 +08:00
|
|
|
|
<description>easy-retry</description>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
|
|
|
|
|
<properties>
|
2023-09-01 22:33:26 +08:00
|
|
|
|
<java.version>17</java.version>
|
2023-09-02 11:05:27 +08:00
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2023-09-17 10:44:01 +08:00
|
|
|
|
<revision>3.0.0</revision>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<dingding-talk.version>1.0.0</dingding-talk.version>
|
2023-07-17 18:38:37 +08:00
|
|
|
|
<netty-all.version>4.1.94.Final</netty-all.version>
|
|
|
|
|
<hutool-all.version>5.8.19</hutool-all.version>
|
2023-08-09 18:38:23 +08:00
|
|
|
|
<mybatis-plus.version>3.5.3.2</mybatis-plus.version>
|
2023-07-01 09:51:38 +08:00
|
|
|
|
<alibaba-dingtalk.version>2.0.0</alibaba-dingtalk.version>
|
2023-07-28 17:39:45 +08:00
|
|
|
|
<guava-retrying.version>2.0.0</guava-retrying.version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<modules>
|
2023-04-18 23:03:33 +08:00
|
|
|
|
<module>easy-retry-common</module>
|
|
|
|
|
<module>easy-retry-server</module>
|
|
|
|
|
<module>easy-retry-client-starter</module>
|
2023-08-04 22:22:47 +08:00
|
|
|
|
<module>easy-retry-datasource</module>
|
2023-09-26 15:55:16 +08:00
|
|
|
|
<module>easy-retry-client</module>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
|
<version>${netty-all.version}</version>
|
|
|
|
|
</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
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</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
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</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
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2023-08-04 22:22:47 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-datasource-template</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-mariadb-datasource</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-mysql-datasource</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-postgres-datasource</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-mariadb-datasource</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
2023-08-17 18:29:32 +08:00
|
|
|
|
<artifactId>hutool-http</artifactId>
|
|
|
|
|
<version>${hutool-all.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-extra</artifactId>
|
|
|
|
|
<version>${hutool-all.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
2023-05-07 11:44:57 +08:00
|
|
|
|
<version>${hutool-all.version}</version>
|
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-client-core</artifactId>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2023-09-29 23:13:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-client-job-core</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<!-- dingding talk sdk -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
2023-07-01 09:51:38 +08:00
|
|
|
|
<version>${alibaba-dingtalk.version}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
2023-07-01 09:51:38 +08:00
|
|
|
|
<version>${mybatis-plus.version}</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependency>
|
2023-07-28 17:39:45 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
|
|
|
|
<version>${guava-retrying.version}</version>
|
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
2022-10-24 21:20:32 +08:00
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
2023-04-22 11:48:37 +08:00
|
|
|
|
<name>GNU General Public License v3.0</name>
|
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
|
2022-10-24 21:20:32 +08:00
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
<scm>
|
2023-04-18 23:03:33 +08:00
|
|
|
|
<url>https://github.com/byteblogs168/easy-retry</url>
|
2023-04-22 11:48:37 +08:00
|
|
|
|
<connection>https://gitee.com/aizuda/easy-retry.git</connection>
|
|
|
|
|
<developerConnection>https://gitee.com/aizuda/</developerConnection>
|
2022-10-24 21:20:32 +08:00
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<name>byteblogs</name>
|
|
|
|
|
<email>byteblogs@aliyun.com</email>
|
|
|
|
|
<url>https://github.com/byteblogs168</url>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-09-17 10:44:01 +08:00
|
|
|
|
<version>3.11.0</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
|
<version>1.1.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
|
<flattenMode>oss</flattenMode>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten</id>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>flatten</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>clean</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2023-04-23 22:18:58 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
</plugin>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2023-04-23 22:18:58 +08:00
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>1.6</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2023-09-17 10:44:01 +08:00
|
|
|
|
<version>3.5.0</version>
|
2023-04-23 22:18:58 +08:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<!-- java8版本导致javadoc打包编译失败时候,添加-->
|
|
|
|
|
<configuration>
|
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
|
<doclint>none</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2023-09-17 10:44:01 +08:00
|
|
|
|
<version>1.6.13</version>
|
2023-04-23 22:18:58 +08:00
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</project>
|