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"
|
2024-03-22 17:48:02 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2024-03-22 19:22:45 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>spzx-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<artifactId>spzx-manager</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<name>spzx-manager</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
2024-03-22 19:22:45 +08:00
|
|
|
<dependencies>
|
|
|
|
<!-- 自己的模块 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>common-service</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- spring boot web开发所需要的起步依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Spring的test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- redis的起步依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- mybatis的起步依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- mysql驱动 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- 分页插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2024-03-22 21:05:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>common-util</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-22 19:22:45 +08:00
|
|
|
</dependencies>
|
2024-03-22 17:48:02 +08:00
|
|
|
</project>
|