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

pom.xml 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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</artifactId>
  47. <version>5.2.5</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.poi</groupId>
  51. <artifactId>poi-ooxml</artifactId>
  52. <version>5.2.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.poi</groupId>
  56. <artifactId>poi-scratchpad</artifactId>
  57. <version>5.2.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba.fastjson2</groupId>
  61. <artifactId>fastjson2</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>dev.langchain4j</groupId>
  65. <artifactId>langchain4j-embeddings-bge-small-zh-v15</artifactId>
  66. <version>0.35.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.milvus</groupId>
  70. <artifactId>milvus-sdk-java</artifactId>
  71. <version>2.3.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>dev.langchain4j</groupId>
  75. <artifactId>langchain4j</artifactId>
  76. <version>0.35.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>dev.langchain4j</groupId>
  80. <artifactId>langchain4j-document-parser-apache-pdfbox</artifactId>
  81. <version>0.35.0</version>
  82. </dependency>
  83. </dependencies>
  84. <dependencyManagement>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.noear</groupId>
  88. <artifactId>solon-parent</artifactId>
  89. <version>${solon.version}</version>
  90. <type>pom</type>
  91. <scope>import</scope>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <build>
  96. <finalName>${project.name}</finalName>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <version>3.11.0</version>
  102. <configuration>
  103. <compilerArgument>-parameters</compilerArgument>
  104. <source>8</source>
  105. <target>8</target>
  106. <encoding>UTF-8</encoding>
  107. </configuration>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-assembly-plugin</artifactId>
  112. <configuration>
  113. <finalName>${project.name}</finalName>
  114. <appendAssemblyId>false</appendAssemblyId>
  115. <descriptorRefs>
  116. <descriptorRef>jar-with-dependencies</descriptorRef>
  117. </descriptorRefs>
  118. <archive>
  119. <manifest>
  120. <mainClass>webapp.HelloApp</mainClass>
  121. </manifest>
  122. </archive>
  123. </configuration>
  124. <executions>
  125. <execution>
  126. <id>make-assembly</id>
  127. <phase>package</phase>
  128. <goals>
  129. <goal>single</goal>
  130. </goals>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. <repositories>
  137. <repository>
  138. <id>sonatype-snapshots</id>
  139. <name>Sonatype Snapshots</name>
  140. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  141. <releases>
  142. <enabled>false</enabled>
  143. </releases>
  144. </repository>
  145. </repositories>
  146. <pluginRepositories>
  147. <pluginRepository>
  148. <id>sonatype-snapshots</id>
  149. <name>Sonatype Snapshots</name>
  150. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  151. <releases>
  152. <enabled>false</enabled>
  153. </releases>
  154. </pluginRepository>
  155. </pluginRepositories>
  156. </project>