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-common</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-common-core</artifactId>
|
|
|
|
|
<name>easy-retry-common-core</name>
|
|
|
|
|
<description>easy-retry-common-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>
|
2023-08-17 18:29:32 +08:00
|
|
|
|
<scope>provided</scope>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
2024-01-16 15:34:41 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-09-01 22:33:26 +08:00
|
|
|
|
<groupId>commons-configuration</groupId>
|
|
|
|
|
<artifactId>commons-configuration</artifactId>
|
|
|
|
|
<version>1.10</version>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependency>
|
2023-01-14 20:47:36 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
2023-08-17 18:29:32 +08:00
|
|
|
|
<artifactId>hutool-http</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-extra</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
2023-01-14 20:47:36 +08:00
|
|
|
|
</dependency>
|
2023-09-01 22:33:26 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-30 18:38:51 +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>
|
2024-01-16 15:34:41 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
|
|
<artifactId>easy-retry-common-log</artifactId>
|
|
|
|
|
</dependency>
|
2023-01-14 21:02:18 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法:为了解决Unable to find main class的问题 -->
|
|
|
|
|
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|