综合办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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