68 lines
2.1 KiB
XML
68 lines
2.1 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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.atguigu</groupId>
|
||
|
<artifactId>spzx-parent-v2</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>spzx-service</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<name>spzx-service</name>
|
||
|
<url>https://maven.apache.org</url>
|
||
|
<modules>
|
||
|
<module>service-user</module>
|
||
|
<module>service-order</module>
|
||
|
</modules>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.atguigu</groupId>
|
||
|
<artifactId>common-service</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</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>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.pagehelper</groupId>
|
||
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
<version>1.4.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 服务注册 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 流量控制 -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|