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