pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fs</groupId>
  7. <artifactId>fs</artifactId>
  8. <version>1.1.0</version>
  9. <name>FS</name>
  10. <description>互联网医院平台</description>
  11. <properties>
  12. <fs.version>1.1.0</fs.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>21</java.version>
  16. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  17. <druid.version>1.2.8</druid.version>
  18. <bitwalker.version>1.21</bitwalker.version>
  19. <kaptcha.version>2.3.2</kaptcha.version>
  20. <mybatis-spring-boot.version>3.0.3</mybatis-spring-boot.version>
  21. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  22. <fastjson.version>1.2.83</fastjson.version>
  23. <oshi.version>5.8.0</oshi.version>
  24. <jna.version>5.8.0</jna.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.fileupload.version>1.4</commons.fileupload.version>
  27. <commons.collections.version>3.2.2</commons.collections.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>1.7</velocity.version>
  30. <jwt.version>0.9.1</jwt.version>
  31. <org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
  32. <gson-version>2.10</gson-version>
  33. </properties>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>com.google.code.gson</groupId>
  39. <artifactId>gson</artifactId>
  40. <version>${gson-version}</version>
  41. </dependency>
  42. <!-- SpringBoot的依赖配置-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>3.2.8</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <!-- 阿里数据库连接池 -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. <!-- 解析客户端操作系统、浏览器等 -->
  57. <dependency>
  58. <groupId>eu.bitwalker</groupId>
  59. <artifactId>UserAgentUtils</artifactId>
  60. <version>${bitwalker.version}</version>
  61. </dependency>
  62. <!-- SpringBoot集成mybatis框架 -->
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. <version>${mybatis-spring-boot.version}</version>
  67. </dependency>
  68. <!-- pagehelper 分页插件 -->
  69. <dependency>
  70. <groupId>com.github.pagehelper</groupId>
  71. <artifactId>pagehelper-spring-boot-starter</artifactId>
  72. <version>${pagehelper.boot.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  77. <version>3.5.1</version>
  78. </dependency>
  79. <!-- 获取系统信息 -->
  80. <dependency>
  81. <groupId>com.github.oshi</groupId>
  82. <artifactId>oshi-core</artifactId>
  83. <version>${oshi.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.java.dev.jna</groupId>
  87. <artifactId>jna</artifactId>
  88. <version>${jna.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>net.java.dev.jna</groupId>
  92. <artifactId>jna-platform</artifactId>
  93. <version>${jna.version}</version>
  94. </dependency>
  95. <!-- SpringDoc OpenAPI(支持Spring Boot 3) -->
  96. <dependency>
  97. <groupId>org.springdoc</groupId>
  98. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  99. <version>2.5.0</version> <!-- 最新稳定版,可按需更新 -->
  100. </dependency>
  101. <!-- io常用工具类 -->
  102. <dependency>
  103. <groupId>commons-io</groupId>
  104. <artifactId>commons-io</artifactId>
  105. <version>${commons.io.version}</version>
  106. </dependency>
  107. <!-- 文件上传工具类 -->
  108. <dependency>
  109. <groupId>commons-fileupload</groupId>
  110. <artifactId>commons-fileupload</artifactId>
  111. <version>${commons.fileupload.version}</version>
  112. </dependency>
  113. <!-- excel工具 -->
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi-ooxml</artifactId>
  117. <version>${poi.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>javax.validation</groupId>
  121. <artifactId>validation-api</artifactId>
  122. <version>2.0.1.Final</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>jakarta.servlet</groupId>
  126. <artifactId>jakarta.servlet-api</artifactId>
  127. <version>5.0.0</version> <!-- 或更高版本 -->
  128. <scope>provided</scope>
  129. </dependency>
  130. <!-- velocity代码生成使用模板 -->
  131. <dependency>
  132. <groupId>org.apache.velocity</groupId>
  133. <artifactId>velocity</artifactId>
  134. <version>${velocity.version}</version>
  135. <exclusions>
  136. <exclusion>
  137. <groupId>commons-collections</groupId>
  138. <artifactId>commons-collections</artifactId>
  139. </exclusion>
  140. </exclusions>
  141. </dependency>
  142. <!-- collections工具类 -->
  143. <dependency>
  144. <groupId>commons-collections</groupId>
  145. <artifactId>commons-collections</artifactId>
  146. <version>${commons.collections.version}</version>
  147. </dependency>
  148. <!-- 阿里JSON解析器 -->
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>fastjson</artifactId>
  152. <version>${fastjson.version}</version>
  153. </dependency>
  154. <!-- Token生成与解析-->
  155. <dependency>
  156. <groupId>io.jsonwebtoken</groupId>
  157. <artifactId>jjwt</artifactId>
  158. <version>${jwt.version}</version>
  159. </dependency>
  160. <!-- 验证码 -->
  161. <dependency>
  162. <groupId>com.github.penggle</groupId>
  163. <artifactId>kaptcha</artifactId>
  164. <version>${kaptcha.version}</version>
  165. </dependency>
  166. <!-- 定时任务-->
  167. <dependency>
  168. <groupId>com.fs</groupId>
  169. <artifactId>fs-quartz</artifactId>
  170. <version>${fs.version}</version>
  171. </dependency>
  172. <!-- 代码生成-->
  173. <dependency>
  174. <groupId>com.fs</groupId>
  175. <artifactId>fs-generator</artifactId>
  176. <version>${fs.version}</version>
  177. </dependency>
  178. <!-- 核心模块-->
  179. <dependency>
  180. <groupId>com.fs</groupId>
  181. <artifactId>fs-framework</artifactId>
  182. <version>${fs.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.fs</groupId>
  186. <artifactId>fs-service</artifactId>
  187. <version>${fs.version}</version>
  188. </dependency>
  189. <!-- 通用工具-->
  190. <dependency>
  191. <groupId>com.fs</groupId>
  192. <artifactId>fs-common</artifactId>
  193. <version>${fs.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.fs</groupId>
  197. <artifactId>fs-repeat-api</artifactId>
  198. <version>${fs.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.fs</groupId>
  202. <artifactId>fs-ipad-task</artifactId>
  203. <version>${fs.version}</version>
  204. </dependency>
  205. <!-- WebSocket服务-->
  206. <dependency>
  207. <groupId>com.fs</groupId>
  208. <artifactId>fs-websocket</artifactId>
  209. <version>${fs.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.mysql</groupId>
  213. <artifactId>mysql-connector-j</artifactId>
  214. <version>9.1.0</version>
  215. </dependency>
  216. <!-- SpringDoc OpenAPI 依赖 -->
  217. <dependency>
  218. <groupId>org.springdoc</groupId>
  219. <artifactId>springdoc-openapi-ui</artifactId>
  220. <version>1.6.12</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.rocketmq</groupId>
  224. <artifactId>rocketmq-spring-boot-starter</artifactId>
  225. <version>2.3.1</version>
  226. </dependency>
  227. </dependencies>
  228. </dependencyManagement>
  229. <modules>
  230. <module>fs-admin</module>
  231. <module>fs-framework</module>
  232. <module>fs-service</module>
  233. <module>fs-quartz</module>
  234. <module>fs-generator</module>
  235. <module>fs-common</module>
  236. <module>fs-user-app</module>
  237. <module>fs-qw-api-msg</module>
  238. <module>fs-store</module>
  239. <module>fs-company</module>
  240. <module>fs-doctor-app</module>
  241. <module>fs-hospital</module>
  242. <module>fs-ai-chat</module>
  243. <module>fs-wx-api</module>
  244. <module>fs-user-app-ai-chat</module>
  245. <module>fs-qwhook</module>
  246. <module>fs-qwhook-sop</module>
  247. <module>fs-qw-api</module>
  248. <module>fs-qw-task</module>
  249. <module>fs-redis</module>
  250. <module>fs-watch</module>
  251. <module>fs-common-api</module>
  252. <module>fs-company-app</module>
  253. <module>fs-live-app</module>
  254. <module>fs-ad-api</module>
  255. <module>fs-qw-voice</module>
  256. <module>fs-qwhook-msg</module>
  257. <module>fs-repeat-api</module>
  258. <module>fs-ipad-task</module>
  259. <module>fs-websocket</module>
  260. </modules>
  261. <packaging>pom</packaging>
  262. <build>
  263. <plugins>
  264. <plugin>
  265. <groupId>org.apache.maven.plugins</groupId>
  266. <artifactId>maven-compiler-plugin</artifactId>
  267. <version>3.1</version>
  268. <configuration>
  269. <compilerArgs>
  270. <arg>-parameters</arg>
  271. </compilerArgs>
  272. <source>${java.version}</source>
  273. <target>${java.version}</target>
  274. <encoding>${project.build.sourceEncoding}</encoding>
  275. </configuration>
  276. </plugin>
  277. </plugins>
  278. </build>
  279. <repositories>
  280. <repository>
  281. <id>public</id>
  282. <name>aliyun nexus</name>
  283. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  284. <releases>
  285. <enabled>true</enabled>
  286. </releases>
  287. </repository>
  288. <repository>
  289. <id>OceanengineOpenApi</id>
  290. <name>ad_open_sdk_java</name>
  291. <layout>default</layout>
  292. <url>https://artifact.bytedance.com/repository/releases/</url>
  293. </repository>
  294. </repositories>
  295. <pluginRepositories>
  296. <pluginRepository>
  297. <id>public</id>
  298. <name>aliyun nexus</name>
  299. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  300. <releases>
  301. <enabled>true</enabled>
  302. </releases>
  303. <snapshots>
  304. <enabled>false</enabled>
  305. </snapshots>
  306. </pluginRepository>
  307. </pluginRepositories>
  308. </project>