大语言模型
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pom.xml 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. </dependencies>
  45. <dependencyManagement>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.noear</groupId>
  49. <artifactId>solon-parent</artifactId>
  50. <version>${solon.version}</version>
  51. <type>pom</type>
  52. <scope>import</scope>
  53. </dependency>
  54. </dependencies>
  55. </dependencyManagement>
  56. <build>
  57. <finalName>${project.name}</finalName>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>3.11.0</version>
  63. <configuration>
  64. <compilerArgument>-parameters</compilerArgument>
  65. <source>8</source>
  66. <target>8</target>
  67. <encoding>UTF-8</encoding>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-assembly-plugin</artifactId>
  73. <configuration>
  74. <finalName>${project.name}</finalName>
  75. <appendAssemblyId>false</appendAssemblyId>
  76. <descriptorRefs>
  77. <descriptorRef>jar-with-dependencies</descriptorRef>
  78. </descriptorRefs>
  79. <archive>
  80. <manifest>
  81. <mainClass>webapp.HelloApp</mainClass>
  82. </manifest>
  83. </archive>
  84. </configuration>
  85. <executions>
  86. <execution>
  87. <id>make-assembly</id>
  88. <phase>package</phase>
  89. <goals>
  90. <goal>single</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. <repositories>
  98. <repository>
  99. <id>sonatype-snapshots</id>
  100. <name>Sonatype Snapshots</name>
  101. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  102. <releases>
  103. <enabled>false</enabled>
  104. </releases>
  105. </repository>
  106. </repositories>
  107. <pluginRepositories>
  108. <pluginRepository>
  109. <id>sonatype-snapshots</id>
  110. <name>Sonatype Snapshots</name>
  111. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  112. <releases>
  113. <enabled>false</enabled>
  114. </releases>
  115. </pluginRepository>
  116. </pluginRepositories>
  117. </project>