73 lines
2.7 KiB
XML
73 lines
2.7 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<!-- 指定父工程 -->
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>3.0.5</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
<artifactId>spzx-parent-v2</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>spzx-parent</name>
|
|
<url>https://maven.apache.org</url>
|
|
<modules>
|
|
<module>spzx-common</module>
|
|
<module>spzx-model</module>
|
|
<module>spzx-manager</module>
|
|
<module>spzx-common/common-log</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<mysql.verison>8.0.30</mysql.verison>
|
|
<fastjson.version>2.0.47</fastjson.version>
|
|
<lombok.version>1.18.20</lombok.version>
|
|
<mybatis.version>3.0.1</mybatis.version>
|
|
<pagehelper.version>2.1.0</pagehelper.version>
|
|
</properties>
|
|
|
|
<!-- 管理依赖,版本锁定 -->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- mybatis和spring boot整合的起步依赖 -->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis.version}</version>
|
|
</dependency>
|
|
<!-- mysql驱动 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
|
|
<!--fastjson-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<!-- lombok依赖 -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<!-- 分页插件 -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|