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-04 23:50:46 +08:00
|
|
|
<!-- Spring Cloud 基础 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-03 01:11:13 +08:00
|
|
|
<!-- 业务组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.cloud</groupId>
|
|
|
|
<artifactId>yudao-module-system-api</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
|
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>
|
2022-06-11 23:13:58 +08:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
2022-06-02 23:43:34 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Registry 注册中心相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-04 23:50:46 +08:00
|
|
|
<!-- Config 配置中心相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
</dependency>
|
2022-05-06 01:31:24 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2022-06-04 19:14:35 +08:00
|
|
|
<build>
|
|
|
|
<!-- 设置构建的 jar 包名 -->
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<!-- 打包 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>2.6.7</version> <!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
|
|
|
|
<configuration>
|
|
|
|
<fork>true</fork>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-05-06 01:31:24 +08:00
|
|
|
</project>
|