mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-08-01 08:52:11 +08:00
54 lines
1.8 KiB
XML
54 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>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-web</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>chat2db-server-admin-api</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>chat2db-server-admin-api</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-tools-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-domain-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-common-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-domain-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
|
|
<!-- http -->
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|