87 lines
3.7 KiB
XML
87 lines
3.7 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>aioj-backend-common-bom</artifactId>
|
|
<groupId>cn.meowrain.aioj</groupId>
|
|
<packaging>pom</packaging>
|
|
<version>${revision}</version>
|
|
|
|
<name>aioj-common-bom</name>
|
|
<description>依赖管理</description>
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<revision>1.0.0</revision>
|
|
<mybatis-plus.version>3.5.14</mybatis-plus.version>
|
|
<spring-boot.version>3.5.7</spring-boot.version>
|
|
<spring-cloud-alibaba.version>2025.0.0.0</spring-cloud-alibaba.version>
|
|
<mysql.version>9.5.0</mysql.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-bom -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-bom</artifactId>
|
|
<version>5.8.41</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!--orm 相关 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-bom</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://github.com/alibaba/easyexcel -->
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>4.0.3</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-openapi3-jakarta-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
|
<version>4.5.0</version>
|
|
</dependency>
|
|
|
|
<!-- OAuth2 Client -->
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-oauth2-client -->
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-oauth2-client -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-oauth2-client</artifactId>
|
|
<version>3.5.7</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-test -->
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-test</artifactId>
|
|
<version>6.5.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Spring Security -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
<version>3.5.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project> |