mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-31 03:32:43 +08:00
168 lines
6.4 KiB
XML
168 lines
6.4 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-parent</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>chat2db-server-web-start</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>chat2db-server-web-start</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>log4j-api</artifactId>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-web-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-admin-api</artifactId>
|
|
</dependency>
|
|
<!-- Services that need to be loaded -->
|
|
<dependency>
|
|
<groupId>ai.chat2db</groupId>
|
|
<artifactId>chat2db-server-domain-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Log using logback -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Start database -->
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Database version management -->
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-mysql</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Login authentication -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<!-- Sa-Token matching jwt -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-jwt</artifactId>
|
|
</dependency>
|
|
|
|
<!-- template engine -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- http -->
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.zalando</groupId>
|
|
<artifactId>logbook-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>chat2db-server-web-start</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<!-- <build>-->
|
|
<!-- <finalName>chat2db-server-start</finalName>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <!–Remove third-party dependencies when packaging–>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <layout>ZIP</layout>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>-->
|
|
<!-- <groupId>non-exists</groupId>-->
|
|
<!-- <artifactId>non-exists</artifactId>-->
|
|
<!-- </include>-->
|
|
<!-- </includes>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- <!–Copy third-party dependency files to the specified directory–>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-dependency-plugin</artifactId>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>copy-dependencies</id>-->
|
|
<!-- <phase>package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>copy-dependencies</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <!–target/lib is the output directory that depends on the jar package and can be configured according to your preferences.–>-->
|
|
<!-- <outputDirectory>target/lib</outputDirectory>-->
|
|
<!-- <excludeTransitive>false</excludeTransitive>-->
|
|
<!-- <stripVersion>false</stripVersion>-->
|
|
<!-- <includeScope>runtime</includeScope>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project>
|