gtsoft-snail-job-demo/pom.xml

146 lines
5.1 KiB
XML
Raw Permalink Normal View History

2023-09-02 17:24:47 +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>
2024-11-16 10:57:24 +08:00
<version>3.3.5</version>
2023-09-02 17:24:47 +08:00
<relativePath/> <!-- lookup parent from repository -->
</parent>
2025-01-12 23:20:07 +08:00
<groupId>com.opensnail</groupId>
<artifactId>snailjob-demo</artifactId>
2023-09-02 17:24:47 +08:00
<version>1.0.0</version>
2025-01-12 23:20:07 +08:00
<name>SnailJob-Demo</name>
<description>Demo project for SnailJob</description>
2023-09-02 17:24:47 +08:00
<properties>
2023-09-03 23:49:11 +08:00
<java.version>17</java.version>
2025-05-08 09:41:19 +08:00
<snailjob.version>1.5.0-beta1</snailjob.version>
2023-09-02 17:24:47 +08:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2024-03-29 23:40:58 +08:00
<exclusions>
<exclusion>
<artifactId>mybatis-spring</artifactId>
<groupId>org.mybatis</groupId>
</exclusion>
</exclusions>
2023-09-02 17:24:47 +08:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
2024-04-16 09:02:04 +08:00
<artifactId>snail-job-client-starter</artifactId>
<version>${snailjob.version}</version>
2023-09-02 17:24:47 +08:00
</dependency>
2023-10-06 22:59:34 +08:00
<dependency>
<groupId>com.aizuda</groupId>
2024-04-16 09:02:04 +08:00
<artifactId>snail-job-client-retry-core</artifactId>
<version>${snailjob.version}</version>
2023-10-06 22:59:34 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
2024-04-16 09:02:04 +08:00
<artifactId>snail-job-client-job-core</artifactId>
<version>${snailjob.version}</version>
2023-10-06 22:59:34 +08:00
</dependency>
2023-09-10 23:13:33 +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>
<version>3.3.1</version>
</dependency>
2023-09-02 17:24:47 +08:00
<dependency>
2024-04-09 16:17:03 +08:00
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
2024-07-14 21:58:00 +08:00
<version>3.5.7</version>
2024-03-29 23:40:58 +08:00
</dependency>
2023-09-02 17:24:47 +08:00
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.19</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
2023-09-02 17:24:47 +08:00
</dependency>
<dependency>
2023-09-03 23:49:11 +08:00
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.2.0</version>
2023-09-02 17:24:47 +08:00
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.2.0</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
2023-09-02 17:24:47 +08:00
</dependencies>
<build>
2024-04-16 15:03:52 +08:00
<finalName>snail-job-example</finalName>
2023-09-02 17:24:47 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>