pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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>qmjszx</groupId>
  6. <artifactId>qmjszx</artifactId>
  7. <version>4.8.0</version>
  8. <name>qmjszx</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>北旅全民健身中心</description>
  11. <properties>
  12. <qmjszx.version>4.8.0</qmjszx.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. <spring-boot.version>2.5.15</spring-boot.version>
  18. <shiro.version>1.13.0</shiro.version>
  19. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  20. <druid.version>1.2.23</druid.version>
  21. <bitwalker.version>1.21</bitwalker.version>
  22. <kaptcha.version>2.3.3</kaptcha.version>
  23. <swagger.version>3.0.0</swagger.version>
  24. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  25. <fastjson.version>1.2.83</fastjson.version>
  26. <oshi.version>6.6.5</oshi.version>
  27. <commons.io.version>2.16.1</commons.io.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>2.3</velocity.version>
  30. <!-- override dependency version -->
  31. <tomcat.version>9.0.96</tomcat.version>
  32. <logback.version>1.2.13</logback.version>
  33. <spring-framework.version>5.3.39</spring-framework.version>
  34. </properties>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- 覆盖SpringFramework的依赖配置-->
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-framework-bom</artifactId>
  42. <version>${spring-framework.version}</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <!-- SpringBoot的依赖配置-->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-dependencies</artifactId>
  50. <version>${spring-boot.version}</version>
  51. <type>pom</type>
  52. <scope>import</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-redis</artifactId>
  57. <version>${spring-boot.version}</version>
  58. <type>pom</type>
  59. <scope>import</scope>
  60. </dependency>
  61. <!-- 覆盖logback的依赖配置-->
  62. <dependency>
  63. <groupId>ch.qos.logback</groupId>
  64. <artifactId>logback-core</artifactId>
  65. <version>${logback.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>ch.qos.logback</groupId>
  69. <artifactId>logback-classic</artifactId>
  70. <version>${logback.version}</version>
  71. </dependency>
  72. <!-- 覆盖tomcat的依赖配置-->
  73. <dependency>
  74. <groupId>org.apache.tomcat.embed</groupId>
  75. <artifactId>tomcat-embed-core</artifactId>
  76. <version>${tomcat.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.tomcat.embed</groupId>
  80. <artifactId>tomcat-embed-el</artifactId>
  81. <version>${tomcat.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.tomcat.embed</groupId>
  85. <artifactId>tomcat-embed-websocket</artifactId>
  86. <version>${tomcat.version}</version>
  87. </dependency>
  88. <!-- 阿里数据库连接池 -->
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>druid-spring-boot-starter</artifactId>
  92. <version>${druid.version}</version>
  93. </dependency>
  94. <!-- 验证码 -->
  95. <dependency>
  96. <groupId>pro.fessional</groupId>
  97. <artifactId>kaptcha</artifactId>
  98. <version>${kaptcha.version}</version>
  99. </dependency>
  100. <!-- Shiro核心框架 -->
  101. <dependency>
  102. <groupId>org.apache.shiro</groupId>
  103. <artifactId>shiro-core</artifactId>
  104. <version>${shiro.version}</version>
  105. </dependency>
  106. <!-- Shiro使用Spring框架 -->
  107. <dependency>
  108. <groupId>org.apache.shiro</groupId>
  109. <artifactId>shiro-spring</artifactId>
  110. <version>${shiro.version}</version>
  111. </dependency>
  112. <!-- Shiro使用EhCache缓存框架 -->
  113. <dependency>
  114. <groupId>org.apache.shiro</groupId>
  115. <artifactId>shiro-ehcache</artifactId>
  116. <version>${shiro.version}</version>
  117. </dependency>
  118. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  119. <dependency>
  120. <groupId>com.github.theborakompanioni</groupId>
  121. <artifactId>thymeleaf-extras-shiro</artifactId>
  122. <version>${thymeleaf.extras.shiro.version}</version>
  123. </dependency>
  124. <!-- 解析客户端操作系统、浏览器等 -->
  125. <dependency>
  126. <groupId>eu.bitwalker</groupId>
  127. <artifactId>UserAgentUtils</artifactId>
  128. <version>${bitwalker.version}</version>
  129. </dependency>
  130. <!-- pagehelper 分页插件 -->
  131. <dependency>
  132. <groupId>com.github.pagehelper</groupId>
  133. <artifactId>pagehelper-spring-boot-starter</artifactId>
  134. <version>${pagehelper.boot.version}</version>
  135. </dependency>
  136. <!-- 获取系统信息 -->
  137. <dependency>
  138. <groupId>com.github.oshi</groupId>
  139. <artifactId>oshi-core</artifactId>
  140. <version>${oshi.version}</version>
  141. </dependency>
  142. <!-- Swagger3依赖 -->
  143. <dependency>
  144. <groupId>io.springfox</groupId>
  145. <artifactId>springfox-boot-starter</artifactId>
  146. <version>${swagger.version}</version>
  147. <exclusions>
  148. <exclusion>
  149. <groupId>io.swagger</groupId>
  150. <artifactId>swagger-models</artifactId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <!-- io常用工具类 -->
  155. <dependency>
  156. <groupId>commons-io</groupId>
  157. <artifactId>commons-io</artifactId>
  158. <version>${commons.io.version}</version>
  159. </dependency>
  160. <!-- excel工具 -->
  161. <dependency>
  162. <groupId>org.apache.poi</groupId>
  163. <artifactId>poi-ooxml</artifactId>
  164. <version>${poi.version}</version>
  165. </dependency>
  166. <!-- velocity代码生成使用模板 -->
  167. <dependency>
  168. <groupId>org.apache.velocity</groupId>
  169. <artifactId>velocity-engine-core</artifactId>
  170. <version>${velocity.version}</version>
  171. </dependency>
  172. <!-- 阿里JSON解析器 -->
  173. <dependency>
  174. <groupId>com.alibaba</groupId>
  175. <artifactId>fastjson</artifactId>
  176. <version>${fastjson.version}</version>
  177. </dependency>
  178. <!-- 定时任务-->
  179. <dependency>
  180. <groupId>qmjszx</groupId>
  181. <artifactId>qmjszx-quartz</artifactId>
  182. <version>${qmjszx.version}</version>
  183. </dependency>
  184. <!-- 代码生成-->
  185. <dependency>
  186. <groupId>qmjszx</groupId>
  187. <artifactId>qmjszx-generator</artifactId>
  188. <version>${qmjszx.version}</version>
  189. </dependency>
  190. <!-- 核心模块-->
  191. <dependency>
  192. <groupId>qmjszx</groupId>
  193. <artifactId>qmjszx-framework</artifactId>
  194. <version>${qmjszx.version}</version>
  195. </dependency>
  196. <!-- 系统模块-->
  197. <dependency>
  198. <groupId>qmjszx</groupId>
  199. <artifactId>qmjszx-system</artifactId>
  200. <version>${qmjszx.version}</version>
  201. </dependency>
  202. <!-- 通用工具-->
  203. <dependency>
  204. <groupId>qmjszx</groupId>
  205. <artifactId>qmjszx-common</artifactId>
  206. <version>${qmjszx.version}</version>
  207. </dependency>
  208. <!-- 业务依赖-->
  209. <dependency>
  210. <groupId>qmjszx</groupId>
  211. <artifactId>qmjszx-business</artifactId>
  212. <version>${qmjszx.version}</version>
  213. </dependency>
  214. <!-- 业务依赖-->
  215. <dependency>
  216. <groupId>qmjszx</groupId>
  217. <artifactId>qmjszx-pay</artifactId>
  218. <version>${qmjszx.version}</version>
  219. </dependency>
  220. </dependencies>
  221. </dependencyManagement>
  222. <modules>
  223. <module>qmjszx-admin</module>
  224. <module>qmjszx-framework</module>
  225. <module>qmjszx-system</module>
  226. <module>qmjszx-quartz</module>
  227. <module>qmjszx-generator</module>
  228. <module>qmjszx-common</module>
  229. <module>qmjszx-business</module>
  230. <module>qmjszx-pay</module>
  231. </modules>
  232. <packaging>pom</packaging>
  233. <dependencies>
  234. </dependencies>
  235. <build>
  236. <plugins>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-compiler-plugin</artifactId>
  240. <version>3.1</version>
  241. <configuration>
  242. <source>${java.version}</source>
  243. <target>${java.version}</target>
  244. <encoding>${project.build.sourceEncoding}</encoding>
  245. </configuration>
  246. </plugin>
  247. </plugins>
  248. </build>
  249. <repositories>
  250. <repository>
  251. <id>public</id>
  252. <name>aliyun nexus</name>
  253. <url>https://maven.aliyun.com/repository/public</url>
  254. <releases>
  255. <enabled>true</enabled>
  256. </releases>
  257. </repository>
  258. </repositories>
  259. <pluginRepositories>
  260. <pluginRepository>
  261. <id>public</id>
  262. <name>aliyun nexus</name>
  263. <url>https://maven.aliyun.com/repository/public</url>
  264. <releases>
  265. <enabled>true</enabled>
  266. </releases>
  267. <snapshots>
  268. <enabled>false</enabled>
  269. </snapshots>
  270. </pluginRepository>
  271. </pluginRepositories>
  272. </project>