gtsoft-snail-job-server/snail-job-server/snail-job-server-starter/pom.xml

113 lines
3.9 KiB
XML
Raw Normal View History

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>
<artifactId>snail-job-server</artifactId>
2023-09-18 23:30:15 +08:00
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>snail-job-server-starter</artifactId>
<name>snail-job-server-starter</name>
<description>snail-job-server-starter</description>
2023-09-18 23:30:15 +08:00
<packaging>jar</packaging>
<properties>
<java.version>17</java.version>
<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>
<dependencies>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-web</artifactId>
<exclusions>
<exclusion>
<artifactId>mybatis-spring</artifactId>
<groupId>org.mybatis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>3.0.3</version>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-retry-task</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-job-task</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-common</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-ui</artifactId>
</dependency>
2023-09-18 23:30:15 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.github.rholder</groupId>
<artifactId>guava-retrying</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
2023-11-15 13:32:02 +08:00
<build>
<finalName>snail-job-server</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
2024-04-16 15:03:26 +08:00
<mainClass>com.aizuda.snailjob.server.SnailJobServerApplication</mainClass>
<classifier>exec</classifier>
</configuration>
<executions>
<execution>
<goals>
<goal>build-info</goal>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2023-11-15 13:32:02 +08:00
</build>
2023-09-18 23:30:15 +08:00
</project>