pom.xml 11 KB

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