大语言模型
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-agent</artifactId>
  13. <description>
  14. cmc智能体
  15. </description>
  16. <properties>
  17. <solon.version>3.3.3</solon.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.noear</groupId>
  22. <artifactId>solon-lib</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.noear</groupId>
  26. <artifactId>solon-web-servlet</artifactId>
  27. </dependency>
  28. <!-- Spring Boot Web -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!-- Solon模型上下文协议 -->
  34. <dependency>
  35. <groupId>org.noear</groupId>
  36. <artifactId>solon-ai-mcp</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>*</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.noear</groupId>
  53. <artifactId>solon-parent</artifactId>
  54. <version>${solon.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <build>
  61. <finalName>${project.name}</finalName>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.11.0</version>
  67. <configuration>
  68. <compilerArgument>-parameters</compilerArgument>
  69. <source>8</source>
  70. <target>8</target>
  71. <encoding>UTF-8</encoding>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-assembly-plugin</artifactId>
  77. <configuration>
  78. <finalName>${project.name}</finalName>
  79. <appendAssemblyId>false</appendAssemblyId>
  80. <descriptorRefs>
  81. <descriptorRef>jar-with-dependencies</descriptorRef>
  82. </descriptorRefs>
  83. <archive>
  84. <manifest>
  85. <mainClass>webapp.HelloApp</mainClass>
  86. </manifest>
  87. </archive>
  88. </configuration>
  89. <executions>
  90. <execution>
  91. <id>make-assembly</id>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>single</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. <repositories>
  102. <repository>
  103. <id>sonatype-snapshots</id>
  104. <name>Sonatype Snapshots</name>
  105. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  106. <releases>
  107. <enabled>false</enabled>
  108. </releases>
  109. </repository>
  110. </repositories>
  111. <pluginRepositories>
  112. <pluginRepository>
  113. <id>sonatype-snapshots</id>
  114. <name>Sonatype Snapshots</name>
  115. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  116. <releases>
  117. <enabled>false</enabled>
  118. </releases>
  119. </pluginRepository>
  120. </pluginRepositories>
  121. </project>