Files
qiufeng a5555a651f feat: AI功能剥离,版本升级
fix: 解决mf-ai中webflux请求层切面兼容性问题
fix: 解决mf-ai swagger使用问题
2026-07-14 18:54:01 +08:00

51 lines
1.8 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-scheduler</artifactId>
<properties>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<dependencies>
<!-- 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-oauth-api</artifactId>
</dependency>
<dependency>
<groupId>cn.com.mfish</groupId>
<artifactId>mf-common-scheduler</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.apache.rocketmq</groupId>-->
<!-- <artifactId>rocketmq-spring-boot-starter</artifactId>-->
<!-- <version>${rocketmq.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>