|
|
<?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>
|
|
|
<version>3.4.2</version>
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
<groupId>com.vksfeng</groupId>
|
|
|
<artifactId>quan</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
<packaging>pom</packaging>
|
|
|
<name>quan</name>
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
<url/>
|
|
|
<licenses>
|
|
|
<license/>
|
|
|
</licenses>
|
|
|
<developers>
|
|
|
<developer/>
|
|
|
</developers>
|
|
|
<modules>
|
|
|
<module>quan-common</module>
|
|
|
<module>quan-server</module>
|
|
|
<module>quan-gateway</module>
|
|
|
</modules>
|
|
|
<scm>
|
|
|
<connection/>
|
|
|
<developerConnection/>
|
|
|
<tag/>
|
|
|
<url/>
|
|
|
</scm>
|
|
|
<properties>
|
|
|
<java.version>17</java.version>
|
|
|
<spring-boot.version>3.4.2</spring-boot.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
<!-- 子模块中的自定义公共模块 -->
|
|
|
<dependency>
|
|
|
<groupId>com.vksfeng</groupId>
|
|
|
<artifactId>quan-common</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
</dependency>
|
|
|
<!-- MyBatis Spring Boot Starter -->
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<version>3.0.4</version>
|
|
|
</dependency>
|
|
|
<!-- Spring Boot Data Redis -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
<version>${spring-boot.version}</version>
|
|
|
</dependency>
|
|
|
<!-- Spring Boot Web -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
<version>${spring-boot.version}</version>
|
|
|
</dependency>
|
|
|
<!-- MySQL Connector -->
|
|
|
<dependency>
|
|
|
<groupId>com.mysql</groupId>
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
<version>9.1.0</version>
|
|
|
</dependency>
|
|
|
<!-- Lombok -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.18.30</version>
|
|
|
</dependency>
|
|
|
<!-- Spring Boot Test -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<version>${spring-boot.version}</version>
|
|
|
</dependency>
|
|
|
<!-- Jackson Databind -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>2.18.2</version>
|
|
|
</dependency>
|
|
|
<!-- JJWT API -->
|
|
|
<dependency>
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
<version>0.9.1</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
|
|
|
<!-- 处理java对象和xml之间转换。发现在jjwt中需要 -->
|
|
|
<dependency>
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
<version>2.3.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 接口文档 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
<version>2.8.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 集成redis依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
<version>3.4.2</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
<version>2.11.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>io.lettuce</groupId>
|
|
|
<artifactId>lettuce-core</artifactId>
|
|
|
<version>6.3.2.RELEASE</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 工具类 -->
|
|
|
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.8.36</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Email 支持 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
<version>3.4.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 验证码生成工具 -->
|
|
|
<dependency>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
<version>2.6</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.minio/minio -->
|
|
|
<dependency>
|
|
|
<groupId>io.minio</groupId>
|
|
|
<artifactId>minio</artifactId>
|
|
|
<version>8.5.17</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
<!-- <artifactId>spring-boot-starter-websocket</artifactId>-->
|
|
|
<!-- <version>3.4.2</version>-->
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<!-- 阿里云oss(及一些java9以上版本需要安装的依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
<version>3.17.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
<version>2.3.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.activation</groupId>
|
|
|
<artifactId>activation</artifactId>
|
|
|
<version>1.1.1</version>
|
|
|
</dependency>
|
|
|
<!-- no more than 2.3.3-->
|
|
|
<dependency>
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
<version>2.3.3</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
<build>
|
|
|
<pluginManagement>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<version>3.4.2</version>
|
|
|
<configuration>
|
|
|
<excludes>
|
|
|
<exclude>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
</exclude>
|
|
|
</excludes>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<annotationProcessorPaths>
|
|
|
<path>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.18.36</version>
|
|
|
</path>
|
|
|
</annotationProcessorPaths>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<skip>true</skip>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
</project> |