mirror of
https://github.com/mfish-qf/mfish-nocode.git
synced 2026-08-28 19:21:26 +08:00
a5555a651f
fix: 解决mf-ai中webflux请求层切面兼容性问题 fix: 解决mf-ai swagger使用问题
48 lines
1.7 KiB
XML
48 lines
1.7 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-oauth</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-mp</artifactId>
|
|
</dependency>
|
|
<!-- Mysql Connector -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-common-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.com.mfish</groupId>
|
|
<artifactId>mf-common-captcha</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |