|
|
<?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.vksfeng</groupId>
|
|
|
<artifactId>quan</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>quan-common</artifactId>
|
|
|
|
|
|
<properties>
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
</dependency>
|
|
|
<!-- 用于json的序列化 -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.minio</groupId>
|
|
|
<artifactId>minio</artifactId>
|
|
|
</dependency>
|
|
|
<!-- 阿里云oss(及一些java9以上版本需要安装的依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.activation</groupId>
|
|
|
<artifactId>activation</artifactId>
|
|
|
</dependency>
|
|
|
<!-- no more than 2.3.3-->
|
|
|
<dependency>
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project> |