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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
|
<artifactId>spzx-common</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>common-service</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>common-service</name>
|
2024-03-23 14:35:02 +08:00
|
|
|
|
<url>https://maven.apache.org</url>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2024-03-22 18:00:05 +08:00
|
|
|
|
<!-- 自己的模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
|
<artifactId>spzx-model</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2024-03-23 21:29:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
|
<artifactId>common-util</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2024-03-22 18:00:05 +08:00
|
|
|
|
<!-- spring boot web开发所需要的起步依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- redis -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
2024-03-23 21:29:38 +08:00
|
|
|
|
<!--支持配置属性类,yml文件中可以提示配置项-->
|
2024-03-23 14:35:02 +08:00
|
|
|
|
<dependency>
|
2024-03-23 21:29:38 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2024-03-23 14:35:02 +08:00
|
|
|
|
</dependency>
|
2024-03-22 17:48:02 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|