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

125 lines
4.4 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-web</artifactId>
<name>snail-job-server-web</name>
<description>snail-job-server-web</description>
2023-09-18 23:30:15 +08:00
<packaging>jar</packaging>
<dependencies>
<!-- preprocessor -->
2023-09-18 23:30:15 +08:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <!-- !!! lombok goes BEFORE mapstruct -->
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
</dependency>
<!-- springboot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<!-- libs -->
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
</dependency>
<!-- SnailJOb -->
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-common</artifactId>
</dependency>
2023-09-18 23:30:15 +08:00
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-datasource-template</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-mysql-datasource</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-postgres-datasource</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-mariadb-datasource</artifactId>
2023-09-18 23:30:15 +08:00
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-oracle-datasource</artifactId>
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-sqlserver-datasource</artifactId>
</dependency>
2024-06-01 22:53:14 +08:00
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-dm8-datasource</artifactId>
</dependency>
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-kingbase-datasource</artifactId>
</dependency>
2023-09-18 23:30:15 +08:00
<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>
</dependency>
2023-09-18 23:30:15 +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>