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-01-13 18:25:54 +08:00
|
|
|
<version>2.6.8</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>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2023-04-22 11:48:37 +08:00
|
|
|
<revision>1.0.0-SNAPSHOT</revision>
|
2023-01-14 21:02:18 +08:00
|
|
|
<dingding-talk.version>1.0.0</dingding-talk.version>
|
|
|
|
<hibernate-validator.version>5.4.2.Final</hibernate-validator.version>
|
|
|
|
<netty-all.version>4.1.48.Final</netty-all.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2023-04-18 23:03:33 +08:00
|
|
|
<module>easy-retry-client-core</module>
|
|
|
|
<module>easy-retry-common</module>
|
|
|
|
<module>easy-retry-server</module>
|
|
|
|
<module>easy-retry-client-starter</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>5.7.21</version>
|
|
|
|
</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>
|
|
|
|
<!-- dingding talk sdk -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
|
|
|
<version>2.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<version>${hibernate-validator.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2023-01-14 19:55:35 +08:00
|
|
|
<distributionManagement>
|
2022-07-06 22:06:16 +08:00
|
|
|
<snapshotRepository>
|
2022-10-24 21:20:32 +08:00
|
|
|
<id>ossrh</id>
|
2023-04-22 11:48:37 +08:00
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
2022-07-06 22:06:16 +08:00
|
|
|
</snapshotRepository>
|
2023-04-22 11:48:37 +08:00
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
2023-01-14 19:55:35 +08:00
|
|
|
</distributionManagement>
|
|
|
|
|
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>
|
|
|
|
<version>3.1</version>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|