130 lines
5.2 KiB
XML
130 lines
5.2 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>3.4.5</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.chinaweal</groupId>
|
||
|
|
<artifactId>youfool-ai-build-demo</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
<name>youfool-ai-build-demo</name>
|
||
|
|
<description>youfool-ai-build-demo</description>
|
||
|
|
<properties>
|
||
|
|
<java.version>21</java.version>
|
||
|
|
<maven.compiler.source>21</maven.compiler.source>
|
||
|
|
<maven.compiler.target>21</maven.compiler.target>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<spring-ai.version>1.0.0</spring-ai.version>
|
||
|
|
<spring-ai-alibaba.version>1.0.0.2</spring-ai-alibaba.version>
|
||
|
|
</properties>
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.ai</groupId>
|
||
|
|
<artifactId>spring-ai-bom</artifactId>
|
||
|
|
<version>${spring-ai.version}</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud.ai</groupId>
|
||
|
|
<artifactId>spring-ai-alibaba-bom</artifactId>
|
||
|
|
<version>${spring-ai-alibaba.version}</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.chinaweal.youfool</groupId>
|
||
|
|
<artifactId>youfool-framework-springboot3</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.ai/spring-ai-pgvector-store-spring-boot-starter -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.ai</groupId>
|
||
|
|
<artifactId>spring-ai-starter-vector-store-pgvector</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.ai</groupId>
|
||
|
|
<artifactId>spring-ai-pdf-document-reader</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.apache.pdfbox</groupId>
|
||
|
|
<artifactId>pdfbox</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.pdfbox</groupId>
|
||
|
|
<artifactId>pdfbox</artifactId>
|
||
|
|
<version>3.0.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.ai</groupId>
|
||
|
|
<artifactId>spring-ai-tika-document-reader</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.chinaweal.youfool</groupId>
|
||
|
|
<artifactId>youfool-common3</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.chinaweal.youfool.ai</groupId>
|
||
|
|
<artifactId>youfool-ai-framework</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.postgresql</groupId>
|
||
|
|
<artifactId>postgresql</artifactId>
|
||
|
|
<version>42.7.7</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-j</artifactId>
|
||
|
|
<version>9.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<annotationProcessorPaths>
|
||
|
|
<path>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</path>
|
||
|
|
</annotationProcessorPaths>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<excludes>
|
||
|
|
<exclude>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</exclude>
|
||
|
|
</excludes>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|