2024-03-22 19:22:45 +08:00
|
|
|
<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>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<groupId>com.atguigu</groupId>
|
2024-03-25 08:58:16 +08:00
|
|
|
<artifactId>spzx-parent-v2</artifactId>
|
2024-03-22 19:22:45 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<name>spzx-parent</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
|
|
|
<modules>
|
|
|
|
<module>spzx-common</module>
|
|
|
|
<module>spzx-model</module>
|
|
|
|
<module>spzx-manager</module>
|
2024-03-26 21:07:44 +08:00
|
|
|
<module>spzx-common/common-log</module>
|
2024-03-27 10:44:23 +08:00
|
|
|
<module>spzx-service</module>
|
|
|
|
<module>spzx-service/service-product</module>
|
|
|
|
<module>spzx-server-gateway</module>
|
|
|
|
<module>spzx-service-client</module>
|
2024-03-22 19:22:45 +08:00
|
|
|
</modules>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-03-23 21:57:31 +08:00
|
|
|
<mysql.verison>8.0.30</mysql.verison>
|
2024-03-23 21:29:38 +08:00
|
|
|
<fastjson.version>2.0.47</fastjson.version>
|
2024-03-22 19:22:45 +08:00
|
|
|
<lombok.version>1.18.20</lombok.version>
|
|
|
|
<mybatis.version>3.0.1</mybatis.version>
|
|
|
|
<pagehelper.version>2.1.0</pagehelper.version>
|
2024-03-27 10:44:23 +08:00
|
|
|
<cloud.version>2022.0.2</cloud.version>
|
|
|
|
<alibaba.version>2022.0.0.0-RC2</alibaba.version>
|
|
|
|
<alipay.version>4.8.73.ALL</alipay.version>
|
2024-03-22 19:22:45 +08:00
|
|
|
</properties>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<!-- 管理依赖,版本锁定 -->
|
|
|
|
<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>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<!--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>
|
2024-03-27 10:44:23 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
<version>${cloud.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
<version>${alibaba.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--导入支付宝支付sdk-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
<version>${alipay.version}</version>
|
|
|
|
</dependency>
|
2024-03-22 19:22:45 +08:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2024-03-22 17:48:02 +08:00
|
|
|
</project>
|