pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.4.4</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.ivy.mcp</groupId>
  13. <artifactId>ruoyi-ai-mcp-webflux-server</artifactId>
  14. <version>1.0.0-M6</version>
  15. <name>spring-ai-mcp-webflux-server</name>
  16. <description>Spring AI MCP Server example and invoke by stdio</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. <spring-ai.version>1.0.0-M6</spring-ai.version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.ai</groupId>
  25. <artifactId>spring-ai-bom</artifactId>
  26. <version>${spring-ai.version}</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. </dependencies>
  31. </dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.ai</groupId>
  35. <artifactId>spring-ai-mcp-server-webflux-spring-boot-starter</artifactId>
  36. <version>${spring-ai.version}</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-maven-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>repackage</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <repositories>
  55. <repository>
  56. <name>Central Portal Snapshots</name>
  57. <id>central-portal-snapshots</id>
  58. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  59. <releases>
  60. <enabled>false</enabled>
  61. </releases>
  62. <snapshots>
  63. <enabled>true</enabled>
  64. </snapshots>
  65. </repository>
  66. <repository>
  67. <id>spring-milestones</id>
  68. <name>Spring Milestones</name>
  69. <url>https://repo.spring.io/milestone</url>
  70. <snapshots>
  71. <enabled>false</enabled>
  72. </snapshots>
  73. </repository>
  74. <repository>
  75. <id>spring-snapshots</id>
  76. <name>Spring Snapshots</name>
  77. <url>https://repo.spring.io/snapshot</url>
  78. <releases>
  79. <enabled>false</enabled>
  80. </releases>
  81. </repository>
  82. </repositories>
  83. </project>