2023-09-18 23:30:15 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server</artifactId>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server-job-task</artifactId>
|
|
|
|
|
<name>snail-job-server-job-task</name>
|
|
|
|
|
<description>snail-job-server-job-task</description>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2024-01-31 23:14:42 +08:00
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server-common</artifactId>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-common-server-api</artifactId>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-datasource-template</artifactId>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-common-client-api</artifactId>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
</dependency>
|
2024-01-10 22:55:01 +08:00
|
|
|
|
|
2023-09-22 22:08:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.rholder</groupId>
|
|
|
|
|
<artifactId>guava-retrying</artifactId>
|
|
|
|
|
</dependency>
|
2023-10-16 19:06:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-server-retry-task</artifactId>
|
2024-01-10 22:55:01 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2023-10-16 19:06:58 +08:00
|
|
|
|
</dependency>
|
2023-12-30 18:38:51 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
<version>5.3.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>QLExpress</artifactId>
|
2024-10-30 16:01:31 +08:00
|
|
|
|
<version>3.3.4</version>
|
2023-12-30 18:38:51 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
|
2024-01-10 22:55:01 +08:00
|
|
|
|
<!-- 上报日志,采用logback打印,排除log4j2 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aizuda</groupId>
|
2024-04-15 18:26:32 +08:00
|
|
|
|
<artifactId>snail-job-common-log</artifactId>
|
2024-01-10 22:55:01 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2023-09-22 22:08:19 +08:00
|
|
|
|
</dependencies>
|
2023-09-18 23:30:15 +08:00
|
|
|
|
<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>
|