2023-09-14 17:16:49 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
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>guigu-ssyx-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>service</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>service-acl</module>
|
|
|
|
<module>service-sys</module>
|
2023-09-15 10:22:02 +08:00
|
|
|
<module>service-product</module>
|
2023-09-14 17:16:49 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--依赖服务的工具类-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>service-util</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!--数据载体-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>model</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web 需要启动项目-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--mybatis-plus-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--mysql-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 服务注册 -->
|
2023-09-15 23:47:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
2023-09-14 17:16:49 +08:00
|
|
|
|
|
|
|
<!-- 服务调用feign -->
|
2023-09-15 23:47:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
2023-09-14 17:16:49 +08:00
|
|
|
|
|
|
|
<!-- 流量控制 -->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
|
|
<!-- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!--开发者工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|