pom.xml 12 KB

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