2022-05-06 01:31:24 +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>yudao</artifactId>
|
|
|
|
<groupId>cn.iocoder.cloud</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yudao-gateway</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>API 服务网关,基于 Spring Cloud Gateway 实现</description>
|
|
|
|
<url>https://github.com/YunaiV/yudao-cloud</url>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-06-02 23:43:34 +08:00
|
|
|
<!-- Gateway 网关相关 -->
|
2022-05-06 01:31:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
|
|
|
</dependency>
|
2022-06-02 23:43:34 +08:00
|
|
|
|
|
|
|
<!-- RPC 远程调用相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Registry 注册中心相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-06 01:31:24 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|