Initial commit: Fintec AI Framework with Agent, RAG, and MCP modules

This commit is contained in:
limqsh
2026-04-27 17:23:58 +08:00
parent a9a1441537
commit 69c5aacdc8
85 changed files with 7143 additions and 0 deletions

72
pom.xml Normal file
View File

@@ -0,0 +1,72 @@
<?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>
<groupId>com.ccb.fintec</groupId>
<artifactId>fintec-framework-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>fintec-framework-ai-core</module>
<module>fintec-framework-agent-spring-boot-autoconfigure</module>
<module>fintec-framework-rag-spring-boot-autoconfigure</module>
<module>fintec-framework-mcp-server-spring-boot-autoconfigure</module>
<module>fintec-framework-agent-spring-boot-starter</module>
<module>fintec-framework-rag-spring-boot-starter</module>
<module>fintec-framework-mcp-server-spring-boot-starter</module>
<!-- Demo Modules -->
<module>mcp-server-demo</module>
<module>rag-demo</module>
<module>agent-demo</module>
</modules>
<properties>
<java.version>17</java.version>
<spring-boot.version>3.4.6</spring-boot.version>
<spring-ai.version>1.1.1</spring-ai.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<!-- 保留参数名称信息Spring MVC 需要 -->
<parameters>true</parameters>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-bom</artifactId>
<version>${spring-ai.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>