|
|
<?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>xyz.wbsite</groupId>
|
|
|
<artifactId>starter-mcp</artifactId>
|
|
|
<version>0.1</version>
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<name>starter-mcp</name>
|
|
|
<description>MCP基本实现原理</description>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>3.2.5</version>
|
|
|
<relativePath/>
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<java.version>17</java.version>
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
|
|
|
|
<repositories>
|
|
|
<!-- 将中央仓库地址指向阿里云聚合仓库,提高下载速度 -->
|
|
|
<repository>
|
|
|
<id>central</id>
|
|
|
<name>Central Repository</name>
|
|
|
<layout>default</layout>
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
<pluginRepositories>
|
|
|
<!-- 将插件的仓库指向阿里云聚合仓库,解决低版本maven下载插件异常或提高下载速度 -->
|
|
|
<pluginRepository>
|
|
|
<id>central</id>
|
|
|
<name>Central Repository</name>
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
<layout>default</layout>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 糊涂工具,包含常用API,避免重复造轮子 -->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.8.24</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</project> |