2024-04-01 18:25:16 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.atguigu</groupId>
|
|
|
|
<artifactId>guigu-ssyx-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>service</artifactId>
|
2024-04-01 19:22:38 +08:00
|
|
|
<packaging>pom</packaging>
|
2024-04-01 18:25:16 +08:00
|
|
|
|
|
|
|
<name>service</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
2024-04-01 19:22:38 +08:00
|
|
|
<modules>
|
|
|
|
<module>service-acl</module>
|
2024-04-02 15:27:57 +08:00
|
|
|
<module>service-sys</module>
|
2024-04-03 16:04:56 +08:00
|
|
|
<module>service-product</module>
|
2024-04-04 03:27:33 +08:00
|
|
|
<module>service-search</module>
|
2024-04-04 21:20:16 +08:00
|
|
|
<module>service-activity</module>
|
2024-04-01 19:22:38 +08:00
|
|
|
</modules>
|
2024-04-01 18:25:16 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<!-- 服务注册 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 服务调用feign -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 流量控制 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|