pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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>17</java.version>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <maven.compiler.release>17</maven.compiler.release>
  19. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  20. <druid.version>1.2.6</druid.version>
  21. <bitwalker.version>1.21</bitwalker.version>
  22. <swagger.version>2.9.2</swagger.version>
  23. <kaptcha.version>2.3.2</kaptcha.version>
  24. <mybatis-spring-boot.version>2.3.2</mybatis-spring-boot.version>
  25. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  26. <fastjson.version>1.2.76</fastjson.version>
  27. <oshi.version>5.8.0</oshi.version>
  28. <jna.version>5.8.0</jna.version>
  29. <commons.io.version>2.16.1</commons.io.version>
  30. <commons.fileupload.version>1.4</commons.fileupload.version>
  31. <commons.collections.version>3.2.2</commons.collections.version>
  32. <poi.version>4.1.2</poi.version>
  33. <velocity.version>1.7</velocity.version>
  34. <jwt.version>0.9.1</jwt.version>
  35. <org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
  36. <lombok.version>1.18.30</lombok.version>
  37. <gson-version>2.10</gson-version>
  38. <ijpay-version>2.7.8</ijpay-version>
  39. <cron-utils.version>9.2.1</cron-utils.version>
  40. </properties>
  41. <!-- 依赖声明 -->
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>com.google.code.gson</groupId>
  46. <artifactId>gson</artifactId>
  47. <version>${gson-version}</version>
  48. </dependency>
  49. <!-- SpringBoot的依赖配置-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-dependencies</artifactId>
  53. <version>2.7.18</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>8.0.33</version>
  61. </dependency>
  62. <!-- 阿里数据库连接池 -->
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid-spring-boot-starter</artifactId>
  66. <version>${druid.version}</version>
  67. </dependency>
  68. <!-- 解析客户端操作系统、浏览器等 -->
  69. <dependency>
  70. <groupId>eu.bitwalker</groupId>
  71. <artifactId>UserAgentUtils</artifactId>
  72. <version>${bitwalker.version}</version>
  73. </dependency>
  74. <!-- SpringBoot集成mybatis框架 -->
  75. <dependency>
  76. <groupId>org.mybatis.spring.boot</groupId>
  77. <artifactId>mybatis-spring-boot-starter</artifactId>
  78. <version>${mybatis-spring-boot.version}</version>
  79. </dependency>
  80. <!-- pagehelper 分页插件 -->
  81. <dependency>
  82. <groupId>com.github.pagehelper</groupId>
  83. <artifactId>pagehelper-spring-boot-starter</artifactId>
  84. <version>${pagehelper.boot.version}</version>
  85. </dependency>
  86. <!-- 获取系统信息 -->
  87. <dependency>
  88. <groupId>com.github.oshi</groupId>
  89. <artifactId>oshi-core</artifactId>
  90. <version>${oshi.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>net.java.dev.jna</groupId>
  94. <artifactId>jna</artifactId>
  95. <version>${jna.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.java.dev.jna</groupId>
  99. <artifactId>jna-platform</artifactId>
  100. <version>${jna.version}</version>
  101. </dependency>
  102. <!-- swagger2-->
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>${swagger.version}</version>
  107. <exclusions>
  108. <exclusion>
  109. <groupId>io.swagger</groupId>
  110. <artifactId>swagger-annotations</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>io.swagger</groupId>
  114. <artifactId>swagger-models</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <!-- swagger2-UI-->
  119. <dependency>
  120. <groupId>io.springfox</groupId>
  121. <artifactId>springfox-swagger-ui</artifactId>
  122. <version>${swagger.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.xiaoymin</groupId>
  126. <artifactId>swagger-bootstrap-ui</artifactId>
  127. <version>1.9.3</version>
  128. </dependency>
  129. <!-- io常用工具类 -->
  130. <dependency>
  131. <groupId>commons-io</groupId>
  132. <artifactId>commons-io</artifactId>
  133. <version>${commons.io.version}</version>
  134. </dependency>
  135. <!-- 文件上传工具类 -->
  136. <dependency>
  137. <groupId>commons-fileupload</groupId>
  138. <artifactId>commons-fileupload</artifactId>
  139. <version>${commons.fileupload.version}</version>
  140. </dependency>
  141. <!-- excel工具 -->
  142. <dependency>
  143. <groupId>org.apache.poi</groupId>
  144. <artifactId>poi-ooxml</artifactId>
  145. <version>${poi.version}</version>
  146. </dependency>
  147. <!-- velocity代码生成使用模板 -->
  148. <dependency>
  149. <groupId>org.apache.velocity</groupId>
  150. <artifactId>velocity</artifactId>
  151. <version>${velocity.version}</version>
  152. <exclusions>
  153. <exclusion>
  154. <groupId>commons-collections</groupId>
  155. <artifactId>commons-collections</artifactId>
  156. </exclusion>
  157. </exclusions>
  158. </dependency>
  159. <!-- collections工具类 -->
  160. <dependency>
  161. <groupId>commons-collections</groupId>
  162. <artifactId>commons-collections</artifactId>
  163. <version>${commons.collections.version}</version>
  164. </dependency>
  165. <!-- 阿里JSON解析器 -->
  166. <dependency>
  167. <groupId>com.alibaba</groupId>
  168. <artifactId>fastjson</artifactId>
  169. <version>${fastjson.version}</version>
  170. </dependency>
  171. <!-- Token生成与解析-->
  172. <dependency>
  173. <groupId>io.jsonwebtoken</groupId>
  174. <artifactId>jjwt</artifactId>
  175. <version>${jwt.version}</version>
  176. </dependency>
  177. <!-- 验证码 -->
  178. <dependency>
  179. <groupId>com.github.penggle</groupId>
  180. <artifactId>kaptcha</artifactId>
  181. <version>${kaptcha.version}</version>
  182. </dependency>
  183. <!-- 统一定时任务业务-->
  184. <dependency>
  185. <groupId>com.fs</groupId>
  186. <artifactId>fs-task</artifactId>
  187. <version>${fs.version}</version>
  188. </dependency>
  189. <!-- 代码生成-->
  190. <dependency>
  191. <groupId>com.fs</groupId>
  192. <artifactId>fs-generator</artifactId>
  193. <version>${fs.version}</version>
  194. </dependency>
  195. <!-- 核心模块-->
  196. <dependency>
  197. <groupId>com.fs</groupId>
  198. <artifactId>fs-framework</artifactId>
  199. <version>${fs.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.fs</groupId>
  203. <artifactId>fs-service</artifactId>
  204. <version>${fs.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.fs</groupId>
  208. <artifactId>fs-wx-ipad-task</artifactId>
  209. <version>${fs.version}</version>
  210. </dependency>
  211. <!-- 通用工具-->
  212. <dependency>
  213. <groupId>com.fs</groupId>
  214. <artifactId>fs-common</artifactId>
  215. <version>${fs.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.fs</groupId>
  219. <artifactId>fs-repeat-api</artifactId>
  220. <version>${fs.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.fs</groupId>
  224. <artifactId>fs-ipad-task</artifactId>
  225. <version>${fs.version}</version>
  226. </dependency>
  227. <!-- WebSocket服务-->
  228. <dependency>
  229. <groupId>com.fs</groupId>
  230. <artifactId>fs-websocket</artifactId>
  231. <version>${fs.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>com.github.javen205</groupId>
  235. <artifactId>IJPay-All</artifactId>
  236. <version>${ijpay-version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.springframework.retry</groupId>
  240. <artifactId>spring-retry</artifactId>
  241. <version>1.3.1</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.cronutils</groupId>
  245. <artifactId>cron-utils</artifactId>
  246. <version>${cron-utils.version}</version>
  247. </dependency>
  248. </dependencies>
  249. </dependencyManagement>
  250. <modules>
  251. <module>fs-admin</module>
  252. <module>fs-saas-admin</module> <!-- 目录名保持fs-admin-saas, artifactId已改为fs-saasadmin -->
  253. <module>fs-agent</module>
  254. <module>fs-framework</module>
  255. <module>fs-service</module>
  256. <module>fs-task</module>
  257. <module>fs-generator</module>
  258. <module>fs-common</module>
  259. <module>fs-user-app</module>
  260. <module>fs-qw-api-msg</module>
  261. <module>fs-store</module>
  262. <module>fs-saas-company</module> <!-- 目录名保持fs-company, artifactId已改为fs-saas -->
  263. <module>fs-doctor-app</module>
  264. <module>fs-pharmacist-app</module>
  265. <module>fs-qw-task</module>
  266. <module>fs-ai-chat</module>
  267. <module>fs-ai-api</module>
  268. <module>fs-wx-api</module>
  269. <module>fs-user-app-ai-chat</module>
  270. <module>fs-qwhook</module>
  271. <module>fs-qwhook-sop</module>
  272. <module>fs-qw-api</module>
  273. <module>fs-redis</module>
  274. <module>fs-watch</module>
  275. <module>fs-wx-ipad-task</module>
  276. <module>fs-common-api</module>
  277. <module>fs-company-app</module>
  278. <module>fs-worker-app</module>
  279. <module>fs-live-app</module>
  280. <module>fs-ad-api</module>
  281. <module>fs-qw-voice</module>
  282. <module>fs-qwhook-msg</module>
  283. <module>fs-qw-mq</module>
  284. <module>fs-repeat-api</module>
  285. <module>fs-ipad-task</module>
  286. <module>fs-websocket</module>
  287. <module>fs-ad-new-api</module>
  288. <module>fs-wx-task</module>
  289. <module>fs-cid-workflow</module>
  290. <module>fs-ai-call-task</module>
  291. <module>fs-comm-gateway</module>
  292. </modules>
  293. <packaging>pom</packaging>
  294. <build>
  295. <pluginManagement>
  296. <plugins>
  297. <plugin>
  298. <groupId>org.apache.maven.plugins</groupId>
  299. <artifactId>maven-compiler-plugin</artifactId>
  300. <version>3.11.0</version>
  301. <configuration>
  302. <source>${java.version}</source>
  303. <target>${java.version}</target>
  304. <encoding>${project.build.sourceEncoding}</encoding>
  305. <parameters>true</parameters>
  306. <annotationProcessorPaths>
  307. <path>
  308. <groupId>org.projectlombok</groupId>
  309. <artifactId>lombok</artifactId>
  310. <version>${lombok.version}</version>
  311. </path>
  312. <path>
  313. <groupId>org.mapstruct</groupId>
  314. <artifactId>mapstruct-processor</artifactId>
  315. <version>${org.mapstruct.version}</version>
  316. </path>
  317. <path>
  318. <groupId>org.projectlombok</groupId>
  319. <artifactId>lombok-mapstruct-binding</artifactId>
  320. <version>0.2.0</version>
  321. </path>
  322. </annotationProcessorPaths>
  323. </configuration>
  324. </plugin>
  325. <plugin>
  326. <groupId>org.apache.maven.plugins</groupId>
  327. <artifactId>maven-resources-plugin</artifactId>
  328. <version>3.3.1</version>
  329. <configuration>
  330. <encoding>${project.build.sourceEncoding}</encoding>
  331. </configuration>
  332. </plugin>
  333. <plugin>
  334. <groupId>org.apache.maven.plugins</groupId>
  335. <artifactId>maven-surefire-plugin</artifactId>
  336. <configuration>
  337. <argLine>-Dfile.encoding=UTF-8</argLine>
  338. </configuration>
  339. </plugin>
  340. </plugins>
  341. </pluginManagement>
  342. <plugins>
  343. <plugin>
  344. <groupId>org.apache.maven.plugins</groupId>
  345. <artifactId>maven-compiler-plugin</artifactId>
  346. </plugin>
  347. </plugins>
  348. </build>
  349. <repositories>
  350. <repository>
  351. <id>public</id>
  352. <name>aliyun nexus</name>
  353. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  354. <releases>
  355. <enabled>true</enabled>
  356. </releases>
  357. </repository>
  358. <repository>
  359. <id>OceanengineOpenApi</id>
  360. <name>ad_open_sdk_java</name>
  361. <layout>default</layout>
  362. <url>https://artifact.bytedance.com/repository/releases/</url>
  363. </repository>
  364. </repositories>
  365. <pluginRepositories>
  366. <pluginRepository>
  367. <id>public</id>
  368. <name>aliyun nexus</name>
  369. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  370. <releases>
  371. <enabled>true</enabled>
  372. </releases>
  373. <snapshots>
  374. <enabled>false</enabled>
  375. </snapshots>
  376. </pluginRepository>
  377. </pluginRepositories>
  378. </project>