93 lines
3.3 KiB
XML
93 lines
3.3 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>
|
|
<groupId>com.master.chat</groupId>
|
|
<artifactId>chat-master</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>chat-api</artifactId>
|
|
<description>ChatMASTER-api模块</description>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<spring-boot.version>2.3.7.RELEASE</spring-boot.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 系统模块 -->
|
|
<dependency>
|
|
<groupId>com.master.chat</groupId>
|
|
<artifactId>chat-sys</artifactId>
|
|
</dependency>
|
|
<!-- 核心模块 -->
|
|
<dependency>
|
|
<groupId>com.master.chat</groupId>
|
|
<artifactId>chat-core</artifactId>
|
|
</dependency>
|
|
<!-- llm模块 -->
|
|
<dependency>
|
|
<groupId>com.master.chat</groupId>
|
|
<artifactId>chat-llm</artifactId>
|
|
</dependency>
|
|
<!-- 定时任务模块 -->
|
|
<dependency>
|
|
<groupId>com.master.chat</groupId>
|
|
<artifactId>chat-quartz</artifactId>
|
|
</dependency>
|
|
<!--mysql驱动 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
<!-- 阿里数据库连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- p6spy 数据库连接池性能分析 -->
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>chat-master</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<configuration>
|
|
<mainClass>com.master.chat.api.ChatApplication</mainClass>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>repackage</id>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |