12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-ai</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>ruoyi-modules-api</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>ruoyi-system-api</module>
- <module>ruoyi-chat-api</module>
- <module>ruoyi-knowledge-api</module>
- </modules>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- 系统核心模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-core</artifactId>
- </dependency>
- <!-- mybaits基础模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-mybatis</artifactId>
- </dependency>
- <!-- 脱敏模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-sensitive</artifactId>
- </dependency>
- <!-- excel模块-->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-excel</artifactId>
- </dependency>
- </dependencies>
- </project>
|