121 lines
3.9 KiB
XML
121 lines
3.9 KiB
XML
<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>
|
||
<groupId>com.bonus</groupId>
|
||
<artifactId>hn-gateway</artifactId>
|
||
<version>24.12.0-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>bonus-gateway</artifactId>
|
||
<description>
|
||
bonus-gateway网关模块
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<!-- SpringCloud Gateway -->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-gateway</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos Config -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Sentinel -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Sentinel Gateway -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Sentinel Datasource Nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.csp</groupId>
|
||
<artifactId>sentinel-datasource-nacos</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringBoot Actuator -->
|
||
|
||
|
||
<!-- SpringCloud Loadbalancer -->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-loadbalancer</artifactId>
|
||
</dependency>
|
||
|
||
<!--验证码 -->
|
||
<dependency>
|
||
<groupId>pro.fessional</groupId>
|
||
<artifactId>kaptcha</artifactId>
|
||
</dependency>
|
||
|
||
<!-- bonus Common Redis-->
|
||
<dependency>
|
||
<groupId>com.bonus</groupId>
|
||
<artifactId>bonus-common-redis</artifactId>
|
||
<version>24.12.0-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<!--加密依赖包-->
|
||
<dependency>
|
||
<groupId>com.github.ulisesbocchio</groupId>
|
||
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
<version>${jasypt-spring-boot-starter.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.xiaoymin</groupId>
|
||
<artifactId>knife4j-spring-ui</artifactId>
|
||
<version>3.0.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.bonus</groupId>
|
||
<artifactId>bonus-common-config</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.24</version> <!-- 替换原1.16.18,仅支持JDK1.8 -->
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bonus</groupId>
|
||
<artifactId>bonus-common-core</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>bonus-gateway-service</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|