pom.xml 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bzd</groupId>
  6. <artifactId>health</artifactId>
  7. <version>4.7.9</version>
  8. <name>health</name>
  9. <description>健康管理系统</description>
  10. <properties>
  11. <bzd.version>4.7.9</bzd.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  16. <shiro.version>1.13.0</shiro.version>
  17. <spring-framework.version>5.3.33</spring-framework.version>
  18. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  19. <druid.version>1.2.23</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <swagger.version>3.0.0</swagger.version>
  23. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  24. <fastjson.version>1.2.83</fastjson.version>
  25. <oshi.version>6.6.3</oshi.version>
  26. <commons.io.version>2.16.1</commons.io.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <lombok.version>1.18.24</lombok.version>
  30. <log.version>1.2.17</log.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringFramework的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-framework-bom</artifactId>
  39. <version>${spring-framework.version}</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!-- SpringBoot的依赖配置-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-dependencies</artifactId>
  47. <version>2.5.15</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>pro.fessional</groupId>
  60. <artifactId>kaptcha</artifactId>
  61. <version>${kaptcha.version}</version>
  62. </dependency>
  63. <!-- Shiro核心框架 -->
  64. <dependency>
  65. <groupId>org.apache.shiro</groupId>
  66. <artifactId>shiro-core</artifactId>
  67. <version>${shiro.version}</version>
  68. </dependency>
  69. <!-- Shiro使用Spring框架 -->
  70. <dependency>
  71. <groupId>org.apache.shiro</groupId>
  72. <artifactId>shiro-spring</artifactId>
  73. <version>${shiro.version}</version>
  74. </dependency>
  75. <!-- Shiro使用EhCache缓存框架 -->
  76. <dependency>
  77. <groupId>org.apache.shiro</groupId>
  78. <artifactId>shiro-ehcache</artifactId>
  79. <version>${shiro.version}</version>
  80. </dependency>
  81. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  82. <dependency>
  83. <groupId>com.github.theborakompanioni</groupId>
  84. <artifactId>thymeleaf-extras-shiro</artifactId>
  85. <version>${thymeleaf.extras.shiro.version}</version>
  86. </dependency>
  87. <!-- 解析客户端操作系统、浏览器等 -->
  88. <dependency>
  89. <groupId>eu.bitwalker</groupId>
  90. <artifactId>UserAgentUtils</artifactId>
  91. <version>${bitwalker.version}</version>
  92. </dependency>
  93. <!-- pagehelper 分页插件 -->
  94. <dependency>
  95. <groupId>com.github.pagehelper</groupId>
  96. <artifactId>pagehelper-spring-boot-starter</artifactId>
  97. <version>${pagehelper.boot.version}</version>
  98. </dependency>
  99. <!-- 获取系统信息 -->
  100. <dependency>
  101. <groupId>com.github.oshi</groupId>
  102. <artifactId>oshi-core</artifactId>
  103. <version>${oshi.version}</version>
  104. </dependency>
  105. <!-- Swagger3依赖 -->
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-boot-starter</artifactId>
  109. <version>${swagger.version}</version>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>io.swagger</groupId>
  113. <artifactId>swagger-models</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <!-- io常用工具类 -->
  118. <dependency>
  119. <groupId>commons-io</groupId>
  120. <artifactId>commons-io</artifactId>
  121. <version>${commons.io.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-engine-core</artifactId>
  133. <version>${velocity.version}</version>
  134. </dependency>
  135. <!-- 阿里JSON解析器 -->
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>fastjson</artifactId>
  139. <version>${fastjson.version}</version>
  140. </dependency>
  141. <!-- 定时任务-->
  142. <dependency>
  143. <groupId>com.bzd</groupId>
  144. <artifactId>health-quartz</artifactId>
  145. <version>${bzd.version}</version>
  146. </dependency>
  147. <!-- 代码生成-->
  148. <dependency>
  149. <groupId>com.bzd</groupId>
  150. <artifactId>health-generator</artifactId>
  151. <version>${bzd.version}</version>
  152. </dependency>
  153. <!-- 核心模块-->
  154. <dependency>
  155. <groupId>com.bzd</groupId>
  156. <artifactId>health-framework</artifactId>
  157. <version>${bzd.version}</version>
  158. </dependency>
  159. <!-- 系统模块-->
  160. <dependency>
  161. <groupId>com.bzd</groupId>
  162. <artifactId>health-system</artifactId>
  163. <version>${bzd.version}</version>
  164. </dependency>
  165. <!-- 通用工具-->
  166. <dependency>
  167. <groupId>com.bzd</groupId>
  168. <artifactId>health-common</artifactId>
  169. <version>${bzd.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.projectlombok</groupId>
  173. <artifactId>lombok</artifactId>
  174. <version>${lombok.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>log4j</groupId>
  178. <artifactId>log4j</artifactId>
  179. <version>${log.version}</version>
  180. </dependency>
  181. </dependencies>
  182. </dependencyManagement>
  183. <modules>
  184. <module>health-admin</module>
  185. <module>health-framework</module>
  186. <module>health-system</module>
  187. <module>health-quartz</module>
  188. <module>health-generator</module>
  189. <module>health-common</module>
  190. </modules>
  191. <packaging>pom</packaging>
  192. <dependencies>
  193. </dependencies>
  194. <build>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-compiler-plugin</artifactId>
  199. <version>3.1</version>
  200. <configuration>
  201. <source>${java.version}</source>
  202. <target>${java.version}</target>
  203. <encoding>${project.build.sourceEncoding}</encoding>
  204. </configuration>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. <repositories>
  209. <repository>
  210. <id>public</id>
  211. <name>aliyun nexus</name>
  212. <url>https://maven.aliyun.com/repository/public</url>
  213. <releases>
  214. <enabled>true</enabled>
  215. </releases>
  216. </repository>
  217. </repositories>
  218. <pluginRepositories>
  219. <pluginRepository>
  220. <id>public</id>
  221. <name>aliyun nexus</name>
  222. <url>https://maven.aliyun.com/repository/public</url>
  223. <releases>
  224. <enabled>true</enabled>
  225. </releases>
  226. <snapshots>
  227. <enabled>false</enabled>
  228. </snapshots>
  229. </pluginRepository>
  230. </pluginRepositories>
  231. </project>