pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.8.3</version>
  9. <name>qishui</name>
  10. <url>http://www.qishui.com</url>
  11. <description>企税平台管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.3</ruoyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.11</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
  23. <pagehelper.boot.version>1.4.3</pagehelper.boot.version>
  24. <fastjson.version>2.0.12</fastjson.version>
  25. <oshi.version>6.2.2</oshi.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>2.3</velocity.version>
  31. <jwt.version>0.9.1</jwt.version>
  32. <slf4j-api>1.7.36</slf4j-api>
  33. <Hutool-version>5.8.0</Hutool-version>
  34. <jwt-version>0.11.2</jwt-version>
  35. <aliyun-sdk-dysms-version>2.0.8</aliyun-sdk-dysms-version>
  36. <alipay-easysdk>2.1.0</alipay-easysdk>
  37. <google-zxing>3.4.1</google-zxing>
  38. <httpclient-version>4.3.4</httpclient-version>
  39. <weixin-popular-version>2.8.16</weixin-popular-version>
  40. <jdom-version>1.1</jdom-version>
  41. </properties>
  42. <!-- 依赖声明 -->
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- SpringBoot的依赖配置-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-dependencies</artifactId>
  49. <version>2.5.14</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <!-- 阿里数据库连接池 -->
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid-spring-boot-starter</artifactId>
  57. <version>${druid.version}</version>
  58. </dependency>
  59. <!-- 解析客户端操作系统、浏览器等 -->
  60. <dependency>
  61. <groupId>eu.bitwalker</groupId>
  62. <artifactId>UserAgentUtils</artifactId>
  63. <version>${bitwalker.version}</version>
  64. </dependency>
  65. <!-- SpringBoot集成mybatis框架 -->
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. <version>${mybatis-spring-boot.version}</version>
  70. </dependency>
  71. <!-- pagehelper 分页插件 -->
  72. <dependency>
  73. <groupId>com.github.pagehelper</groupId>
  74. <artifactId>pagehelper-spring-boot-starter</artifactId>
  75. <version>${pagehelper.boot.version}</version>
  76. </dependency>
  77. <!-- 获取系统信息 -->
  78. <dependency>
  79. <groupId>com.github.oshi</groupId>
  80. <artifactId>oshi-core</artifactId>
  81. <version>${oshi.version}</version>
  82. </dependency>
  83. <!-- Swagger3依赖 -->
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-boot-starter</artifactId>
  87. <version>${swagger.version}</version>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>io.swagger</groupId>
  91. <artifactId>swagger-models</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <!-- io常用工具类 -->
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. <version>${commons.io.version}</version>
  100. </dependency>
  101. <!-- 文件上传工具类 -->
  102. <dependency>
  103. <groupId>commons-fileupload</groupId>
  104. <artifactId>commons-fileupload</artifactId>
  105. <version>${commons.fileupload.version}</version>
  106. </dependency>
  107. <!-- excel工具 -->
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi-ooxml</artifactId>
  111. <version>${poi.version}</version>
  112. </dependency>
  113. <!-- velocity代码生成使用模板 -->
  114. <dependency>
  115. <groupId>org.apache.velocity</groupId>
  116. <artifactId>velocity-engine-core</artifactId>
  117. <version>${velocity.version}</version>
  118. </dependency>
  119. <!-- collections工具类 -->
  120. <dependency>
  121. <groupId>commons-collections</groupId>
  122. <artifactId>commons-collections</artifactId>
  123. <version>${commons.collections.version}</version>
  124. </dependency>
  125. <!-- 阿里JSON解析器 -->
  126. <dependency>
  127. <groupId>com.alibaba.fastjson2</groupId>
  128. <artifactId>fastjson2</artifactId>
  129. <version>${fastjson.version}</version>
  130. </dependency>
  131. <!-- Token生成与解析-->
  132. <dependency>
  133. <groupId>io.jsonwebtoken</groupId>
  134. <artifactId>jjwt</artifactId>
  135. <version>${jwt.version}</version>
  136. </dependency>
  137. <!-- 验证码 -->
  138. <dependency>
  139. <groupId>com.github.penggle</groupId>
  140. <artifactId>kaptcha</artifactId>
  141. <version>${kaptcha.version}</version>
  142. </dependency>
  143. <!-- 支付宝 -->
  144. <dependency>
  145. <groupId>com.alipay.sdk</groupId>
  146. <artifactId>alipay-easysdk</artifactId>
  147. <version>${alipay-easysdk}</version>
  148. </dependency>
  149. <!-- 二维码 -->
  150. <dependency>
  151. <groupId>com.google.zxing</groupId>
  152. <artifactId>javase</artifactId>
  153. <version>${google-zxing}</version>
  154. </dependency>
  155. <!--httpclient -->
  156. <dependency>
  157. <groupId>org.apache.httpcomponents</groupId>
  158. <artifactId>httpclient</artifactId>
  159. <version>${httpclient-version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>jdom</groupId>
  163. <artifactId>jdom</artifactId>
  164. <version>${jdom-version}</version>
  165. </dependency>
  166. <!-- 定时任务-->
  167. <dependency>
  168. <groupId>com.ruoyi</groupId>
  169. <artifactId>qs-quartz</artifactId>
  170. <version>${ruoyi.version}</version>
  171. </dependency>
  172. <!-- 代码生成-->
  173. <dependency>
  174. <groupId>com.ruoyi</groupId>
  175. <artifactId>qs-generator</artifactId>
  176. <version>${ruoyi.version}</version>
  177. </dependency>
  178. <!-- 核心模块-->
  179. <dependency>
  180. <groupId>com.ruoyi</groupId>
  181. <artifactId>qs-framework</artifactId>
  182. <version>${ruoyi.version}</version>
  183. </dependency>
  184. <!-- 系统模块-->
  185. <dependency>
  186. <groupId>com.ruoyi</groupId>
  187. <artifactId>qs-system</artifactId>
  188. <version>${ruoyi.version}</version>
  189. </dependency>
  190. <!-- 通用工具-->
  191. <dependency>
  192. <groupId>com.ruoyi</groupId>
  193. <artifactId>qs-common</artifactId>
  194. <version>${ruoyi.version}</version>
  195. </dependency>
  196. </dependencies>
  197. </dependencyManagement>
  198. <modules>
  199. <module>qs-admin</module>
  200. <module>qs-framework</module>
  201. <module>qs-system</module>
  202. <module>qs-quartz</module>
  203. <module>qs-generator</module>
  204. <module>qs-common</module>
  205. </modules>
  206. <packaging>pom</packaging>
  207. <dependencies>
  208. </dependencies>
  209. <build>
  210. <plugins>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-compiler-plugin</artifactId>
  214. <version>3.1</version>
  215. <configuration>
  216. <source>${java.version}</source>
  217. <target>${java.version}</target>
  218. <encoding>${project.build.sourceEncoding}</encoding>
  219. </configuration>
  220. </plugin>
  221. </plugins>
  222. </build>
  223. <repositories>
  224. <repository>
  225. <id>public</id>
  226. <name>aliyun nexus</name>
  227. <url>https://maven.aliyun.com/repository/public</url>
  228. <releases>
  229. <enabled>true</enabled>
  230. </releases>
  231. </repository>
  232. </repositories>
  233. <pluginRepositories>
  234. <pluginRepository>
  235. <id>public</id>
  236. <name>aliyun nexus</name>
  237. <url>https://maven.aliyun.com/repository/public</url>
  238. <releases>
  239. <enabled>true</enabled>
  240. </releases>
  241. <snapshots>
  242. <enabled>false</enabled>
  243. </snapshots>
  244. </pluginRepository>
  245. </pluginRepositories>
  246. </project>