大模型应用管理
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.

228 lines
6.8 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bfd</groupId>
  6. <artifactId>IntelliModelManager</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.2.4.RELEASE</version>
  12. </parent>
  13. <name>IntelliModelManager</name>
  14. <!-- FIXME change it to the project's website -->
  15. <url>http://www.example.com</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.11</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
  33. <dependency>
  34. <groupId>de.codecentric</groupId>
  35. <artifactId>spring-boot-admin-starter-client</artifactId>
  36. <version>2.2.4</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.code.gson</groupId>
  40. <artifactId>gson</artifactId>
  41. <version>2.8.8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-test</artifactId>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-test</artifactId>
  51. <version>5.0.10.RELEASE</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-io</groupId>
  56. <artifactId>commons-io</artifactId>
  57. <version>2.11.0</version> <!-- 根据你的需求选择版本 -->
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>2.0.17</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  65. <dependency>
  66. <groupId>com.mchange</groupId>
  67. <artifactId>c3p0</artifactId>
  68. <version>0.9.5.5</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  71. <dependency>
  72. <groupId>com.squareup.okhttp3</groupId>
  73. <artifactId>okhttp</artifactId>
  74. <version>4.9.3</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <version>4.5.3</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-lang</groupId>
  83. <artifactId>commons-lang</artifactId>
  84. <version>2.6</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-reflect -->
  87. <dependency>
  88. <groupId>org.jetbrains.kotlin</groupId>
  89. <artifactId>kotlin-reflect</artifactId>
  90. <version>1.6.21</version>
  91. <scope>runtime</scope>
  92. </dependency>
  93. <!-- Log4j 2 日志库 -->
  94. <dependency>
  95. <groupId>org.apache.logging.log4j</groupId>
  96. <artifactId>log4j-api</artifactId>
  97. <version>2.14.1</version> <!-- 或者你需要的其他版本 -->
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.logging.log4j</groupId>
  101. <artifactId>log4j-core</artifactId>
  102. <version>2.14.1</version> <!-- 或者你需要的其他版本 -->
  103. </dependency>
  104. <dependency>
  105. <groupId>org.projectlombok</groupId>
  106. <artifactId>lombok</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>cn.hutool</groupId>
  110. <artifactId>hutool-all</artifactId>
  111. <version>5.8.5</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>junit</groupId>
  115. <artifactId>junit</artifactId>
  116. </dependency>
  117. <!-- https://mvnrepository.com/artifact/p6spy/p6spy -->
  118. <dependency>
  119. <groupId>p6spy</groupId>
  120. <artifactId>p6spy</artifactId>
  121. <version>3.9.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>commons-collections</groupId>
  125. <artifactId>commons-collections</artifactId>
  126. <version>3.2.2</version>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <!-- <pluginManagement> --><!-- lock down plugins versions to avoid using Maven defaults (may be moved
  131. to parent pom) -->
  132. <plugins>
  133. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  134. <plugin>
  135. <artifactId>maven-clean-plugin</artifactId>
  136. <version>3.1.0</version>
  137. </plugin>
  138. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  139. <plugin>
  140. <artifactId>maven-resources-plugin</artifactId>
  141. <version>3.0.2</version>
  142. </plugin>
  143. <plugin>
  144. <artifactId>maven-compiler-plugin</artifactId>
  145. <version>3.8.0</version>
  146. </plugin>
  147. <plugin>
  148. <artifactId>maven-surefire-plugin</artifactId>
  149. <version>2.22.1</version>
  150. </plugin>
  151. <plugin>
  152. <artifactId>maven-jar-plugin</artifactId>
  153. <version>3.0.2</version>
  154. </plugin>
  155. <plugin>
  156. <artifactId>maven-install-plugin</artifactId>
  157. <version>2.5.2</version>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-deploy-plugin</artifactId>
  161. <version>2.8.2</version>
  162. </plugin>
  163. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  164. <plugin>
  165. <artifactId>maven-site-plugin</artifactId>
  166. <version>3.7.1</version>
  167. </plugin>
  168. <plugin>
  169. <artifactId>maven-project-info-reports-plugin</artifactId>
  170. <version>3.0.0</version>
  171. </plugin>
  172. <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 -->
  173. <plugin>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-maven-plugin</artifactId>
  176. <configuration>
  177. <mainClass>com.bfd.Application</mainClass>
  178. <layout>ZIP</layout>
  179. <includes>
  180. <include>
  181. <groupId>${project.groupId}</groupId>
  182. <artifactId>${project.artifactId}</artifactId>
  183. </include>
  184. </includes>
  185. </configuration>
  186. <executions>
  187. <execution>
  188. <goals>
  189. <goal>repackage</goal>
  190. </goals>
  191. </execution>
  192. </executions>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-dependency-plugin</artifactId>
  197. <version>3.1.1</version>
  198. <executions>
  199. <execution>
  200. <id>copy</id>
  201. <phase>package</phase>
  202. <goals>
  203. <goal>copy-dependencies</goal>
  204. </goals>
  205. <configuration>
  206. <type>jar</type>
  207. <includeTypes>jar</includeTypes>
  208. <includeScope>runtime</includeScope>
  209. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  210. </configuration>
  211. </execution>
  212. </executions>
  213. </plugin>
  214. </plugins>
  215. <!-- </pluginManagement> -->
  216. </build>
  217. </project>