pom.xml 10 KB

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