123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.tycoding</groupId>
- <artifactId>langchat</artifactId>
- <version>${revision}</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>langchat-aigc</artifactId>
- <version>${revision}</version>
- <packaging>jar</packaging>
- <dependencies>
- <!-- Modules -->
- <dependency>
- <groupId>cn.tycoding</groupId>
- <artifactId>langchat-common</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tycoding</groupId>
- <artifactId>langchat-core</artifactId>
- </dependency>
- <!-- Spring -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- MySql -->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- </dependency>
- <!-- Excel -->
- <dependency>
- <groupId>com.pig4cloud.excel</groupId>
- <artifactId>excel-spring-boot-starter</artifactId>
- <version>3.2.1</version>
- </dependency>
- </dependencies>
- </project>
|