mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-04-10 18:27:07 +00:00
91 lines
2.7 KiB
XML
91 lines
2.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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>ruoyi-ai</artifactId>
|
|
<groupId>org.ruoyi</groupId>
|
|
<version>${revision}</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>ruoyi-asset-management-api</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>
|
|
资产管理API模块
|
|
</description>
|
|
|
|
<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>
|
|
|
|
<!-- 租户基础模块 -->
|
|
<dependency>
|
|
<groupId>org.ruoyi</groupId>
|
|
<artifactId>ruoyi-common-tenant</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 字段翻译基础模块 -->
|
|
<dependency>
|
|
<groupId>org.ruoyi</groupId>
|
|
<artifactId>ruoyi-common-translation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 日志模块 -->
|
|
<dependency>
|
|
<groupId>org.ruoyi</groupId>
|
|
<artifactId>ruoyi-common-log</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 对象映射工具 -->
|
|
<dependency>
|
|
<groupId>io.github.linpeilie</groupId>
|
|
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 参数校验 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|
|
|