118 lines
4.4 KiB
XML
118 lines
4.4 KiB
XML
|
<?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.2.3</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<groupId>cn.bunny</groupId>
|
||
|
<artifactId>bunny-template-mirror-server</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>bunny-mirror-server</name>
|
||
|
<description>bunny-mirror-server</description>
|
||
|
|
||
|
<modules>
|
||
|
<module>common</module>
|
||
|
<module>model</module>
|
||
|
<module>service</module>
|
||
|
<module>module</module>
|
||
|
</modules>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>22</maven.compiler.source>
|
||
|
<maven.compiler.target>22</maven.compiler.target>
|
||
|
<java.version>21</java.version>
|
||
|
<mybatis-plus.version>3.5.6</mybatis-plus.version>
|
||
|
<mysql.version>8.0.30</mysql.version>
|
||
|
<knife4j.version>4.5.0</knife4j.version>
|
||
|
<fastjson2.version>2.0.47</fastjson2.version>
|
||
|
<minio.version>8.5.9</minio.version>
|
||
|
<lombok.version>1.18.32</lombok.version>
|
||
|
<jwt.version>0.9.1</jwt.version>
|
||
|
<easyexcel.version>3.3.3</easyexcel.version>
|
||
|
<jodatime.version>2.10.1</jodatime.version>
|
||
|
<aspectj>1.9.21</aspectj>
|
||
|
</properties>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<!-- mybatis-plus -->
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
|
<version>${mybatis-plus.version}</version>
|
||
|
</dependency>
|
||
|
<!-- mysql -->
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>${mysql.version}</version>
|
||
|
</dependency>
|
||
|
<!-- knife4j -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||
|
<version>${knife4j.version}</version>
|
||
|
</dependency>
|
||
|
<!-- fastjson2 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.fastjson2</groupId>
|
||
|
<artifactId>fastjson2</artifactId>
|
||
|
<version>${fastjson2.version}</version>
|
||
|
</dependency>
|
||
|
<!-- minio -->
|
||
|
<dependency>
|
||
|
<groupId>io.minio</groupId>
|
||
|
<artifactId>minio</artifactId>
|
||
|
<version>${minio.version}</version>
|
||
|
</dependency>
|
||
|
<!-- lombok -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
</dependency>
|
||
|
<!-- hu tool -->
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>5.8.25</version>
|
||
|
</dependency>
|
||
|
<!--jjwt-->
|
||
|
<dependency>
|
||
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
<artifactId>jjwt</artifactId>
|
||
|
<version>${jwt.version}</version>
|
||
|
</dependency>
|
||
|
<!-- Excel表操作 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>easyexcel</artifactId>
|
||
|
<version>${easyexcel.version}</version>
|
||
|
</dependency>
|
||
|
<!-- aspectj -->
|
||
|
<dependency>
|
||
|
<groupId>org.aspectj</groupId>
|
||
|
<artifactId>aspectjrt</artifactId>
|
||
|
<version>${aspectj}</version>
|
||
|
</dependency>
|
||
|
<!-- aspectj -->
|
||
|
<dependency>
|
||
|
<groupId>org.aspectj</groupId>
|
||
|
<artifactId>aspectjweaver</artifactId>
|
||
|
<version>${aspectj}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>joda-time</groupId>
|
||
|
<artifactId>joda-time</artifactId>
|
||
|
<version>${jodatime.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
</project>
|