vue-pro/yudao-module-ai/yudao-module-ai-biz/pom.xml

63 lines
2.1 KiB
XML
Raw Normal View History

2024-03-03 20:11:00 +08:00
<?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>cn.iocoder.boot</groupId>
<artifactId>yudao-module-ai</artifactId>
<version>${revision}</version>
</parent>
<artifactId>yudao-module-ai-biz</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
2024-03-04 17:03:41 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-ai-api</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-common</artifactId>
</dependency>
2024-04-13 16:00:39 +08:00
2024-03-03 20:11:00 +08:00
<dependency>
2024-04-11 21:51:09 +08:00
<groupId>cn.iocoder.boot</groupId>
2024-04-13 16:00:39 +08:00
<artifactId>yudao-spring-boot-starter-ai</artifactId>
<version>${revision}</version>
2024-03-03 20:11:00 +08:00
</dependency>
2024-03-04 17:03:41 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
2024-04-13 16:00:39 +08:00
<artifactId>yudao-spring-boot-starter-test</artifactId>
2024-03-04 17:03:41 +08:00
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-web</artifactId>
</dependency>
2024-03-03 20:11:00 +08:00
</dependencies>
2024-03-04 17:03:41 +08:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
</build>
2024-03-03 20:11:00 +08:00
</project>