zyjblogs-parent/server/zyjblogs-gateway/pom.xml

101 lines
3.8 KiB
XML
Raw Normal View History

2022-08-17 18:12:43 +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">
<parent>
<artifactId>zyjblogs-cloud-dependencies</artifactId>
2022-08-17 18:12:43 +08:00
<groupId>cn.zyjblogs</groupId>
<version>1.0-SNAPSHOT</version>
<relativePath/>
2022-08-17 18:12:43 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2022-08-18 18:52:02 +08:00
<groupId>cn.zyjblogs.pubilc</groupId>
2022-08-17 18:12:43 +08:00
<artifactId>zyjblogs-gateway</artifactId>
2022-08-26 00:35:57 +08:00
<version>1.0-SNAPSHOT</version>
2022-08-17 18:12:43 +08:00
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
2022-08-18 18:52:02 +08:00
<dependencies>
<!-- 加入sentinel-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- 加入actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
2022-08-26 00:35:57 +08:00
<dependency>
2022-09-23 01:00:22 +08:00
<artifactId>zyjblogs-common-spring-boot-starter</artifactId>
2022-08-26 00:35:57 +08:00
<groupId>cn.zyjblogs.starter</groupId>
2022-08-26 16:27:03 +08:00
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
2022-08-26 00:35:57 +08:00
</dependency>
2022-09-23 01:00:22 +08:00
<!-- 集成redis-->
<!-- <dependency>-->
<!-- <groupId>cn.zyjblogs.starter</groupId>-->
<!-- <artifactId>zyjblogs-redis-spring-boot-starter</artifactId>-->
<!-- </dependency>-->
2022-09-25 00:34:35 +08:00
<dependency>
<groupId>cn.zyjblogs.starter</groupId>
<artifactId>zyjblogs-redis-spring-boot-starter</artifactId>
</dependency>
2022-08-18 18:52:02 +08:00
<!-- 集成nacos-->
<!-- 集成 Nacos 作为服务注册中心配置 -->
2022-08-18 18:52:02 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- 集成 Nacos 作为服务注册中心配置 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
2022-08-18 18:52:02 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!-- 网关 配置 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<!--sentinel持久化存储-->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
2022-09-23 01:00:22 +08:00
<!-- knife4j文档 -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
2022-08-18 18:52:02 +08:00
</dependencies>
2022-08-17 18:12:43 +08:00
</project>