mirror of
https://github.com/mfish-qf/mfish-nocode.git
synced 2026-08-29 03:43:14 +08:00
a5555a651f
fix: 解决mf-ai中webflux请求层切面兼容性问题 fix: 解决mf-ai swagger使用问题
67 lines
2.5 KiB
XML
67 lines
2.5 KiB
XML
<?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>mfish-nocode</artifactId>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<version>mf-2.4.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>mf-test</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 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>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
<!-- SpringCloud Loadbalancer -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
</dependency>
|
|
<!-- bootstrap 启动器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-sys-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-oauth-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-common-app</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-common-redis</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |