pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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.ruoyi</groupId>
  6. <artifactId>ruoyi</artifactId>
  7. <version>4.6.0</version>
  8. <name>ruoyi</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>流动党员管理系统</description>
  11. <properties>
  12. <ruoyi.version>4.6.0</ruoyi.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. <shiro.version>1.7.0</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  19. <druid.version>1.2.4</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <swagger.version>2.9.2</swagger.version>
  23. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  24. <fastjson.version>1.2.75</fastjson.version>
  25. <oshi.version>5.3.6</oshi.version>
  26. <jna.version>5.6.0</jna.version>
  27. <commons.io.version>2.5</commons.io.version>
  28. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>1.7</velocity.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.2.12.RELEASE</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!--阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <!--验证码 -->
  50. <dependency>
  51. <groupId>com.github.penggle</groupId>
  52. <artifactId>kaptcha</artifactId>
  53. <version>${kaptcha.version}</version>
  54. </dependency>
  55. <!--Shiro核心框架 -->
  56. <dependency>
  57. <groupId>org.apache.shiro</groupId>
  58. <artifactId>shiro-core</artifactId>
  59. <version>${shiro.version}</version>
  60. </dependency>
  61. <!-- Shiro使用Spring框架 -->
  62. <dependency>
  63. <groupId>org.apache.shiro</groupId>
  64. <artifactId>shiro-spring</artifactId>
  65. <version>${shiro.version}</version>
  66. </dependency>
  67. <!-- Shiro使用EhCache缓存框架 -->
  68. <dependency>
  69. <groupId>org.apache.shiro</groupId>
  70. <artifactId>shiro-ehcache</artifactId>
  71. <version>${shiro.version}</version>
  72. </dependency>
  73. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  74. <dependency>
  75. <groupId>com.github.theborakompanioni</groupId>
  76. <artifactId>thymeleaf-extras-shiro</artifactId>
  77. <version>${thymeleaf.extras.shiro.version}</version>
  78. </dependency>
  79. <!-- 解析客户端操作系统、浏览器等 -->
  80. <dependency>
  81. <groupId>eu.bitwalker</groupId>
  82. <artifactId>UserAgentUtils</artifactId>
  83. <version>${bitwalker.version}</version>
  84. </dependency>
  85. <!-- pagehelper 分页插件 -->
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>${pagehelper.boot.version}</version>
  90. </dependency>
  91. <!-- 获取系统信息 -->
  92. <dependency>
  93. <groupId>com.github.oshi</groupId>
  94. <artifactId>oshi-core</artifactId>
  95. <version>${oshi.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.java.dev.jna</groupId>
  99. <artifactId>jna</artifactId>
  100. <version>${jna.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>net.java.dev.jna</groupId>
  104. <artifactId>jna-platform</artifactId>
  105. <version>${jna.version}</version>
  106. </dependency>
  107. <!-- swagger2-->
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger2</artifactId>
  111. <version>${swagger.version}</version>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>io.swagger</groupId>
  115. <artifactId>swagger-annotations</artifactId>
  116. </exclusion>
  117. <exclusion>
  118. <groupId>io.swagger</groupId>
  119. <artifactId>swagger-models</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <!-- swagger2-UI-->
  124. <dependency>
  125. <groupId>io.springfox</groupId>
  126. <artifactId>springfox-swagger-ui</artifactId>
  127. <version>${swagger.version}</version>
  128. </dependency>
  129. <!--io常用工具类 -->
  130. <dependency>
  131. <groupId>commons-io</groupId>
  132. <artifactId>commons-io</artifactId>
  133. <version>${commons.io.version}</version>
  134. </dependency>
  135. <!--文件上传工具类 -->
  136. <dependency>
  137. <groupId>commons-fileupload</groupId>
  138. <artifactId>commons-fileupload</artifactId>
  139. <version>${commons.fileupload.version}</version>
  140. </dependency>
  141. <!-- excel工具 -->
  142. <dependency>
  143. <groupId>org.apache.poi</groupId>
  144. <artifactId>poi-ooxml</artifactId>
  145. <version>${poi.version}</version>
  146. </dependency>
  147. <!--velocity代码生成使用模板 -->
  148. <dependency>
  149. <groupId>org.apache.velocity</groupId>
  150. <artifactId>velocity</artifactId>
  151. <version>${velocity.version}</version>
  152. </dependency>
  153. <!-- 阿里JSON解析器 -->
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>fastjson</artifactId>
  157. <version>${fastjson.version}</version>
  158. </dependency>
  159. <!-- 定时任务-->
  160. <dependency>
  161. <groupId>com.ruoyi</groupId>
  162. <artifactId>ruoyi-quartz</artifactId>
  163. <version>${ruoyi.version}</version>
  164. </dependency>
  165. <!-- 代码生成-->
  166. <dependency>
  167. <groupId>com.ruoyi</groupId>
  168. <artifactId>ruoyi-generator</artifactId>
  169. <version>${ruoyi.version}</version>
  170. </dependency>
  171. <!-- 核心模块-->
  172. <dependency>
  173. <groupId>com.ruoyi</groupId>
  174. <artifactId>ruoyi-framework</artifactId>
  175. <version>${ruoyi.version}</version>
  176. </dependency>
  177. <!-- 系统模块-->
  178. <dependency>
  179. <groupId>com.ruoyi</groupId>
  180. <artifactId>ruoyi-system</artifactId>
  181. <version>${ruoyi.version}</version>
  182. </dependency>
  183. <!-- 通用工具-->
  184. <dependency>
  185. <groupId>com.ruoyi</groupId>
  186. <artifactId>ruoyi-common</artifactId>
  187. <version>${ruoyi.version}</version>
  188. </dependency>
  189. <!--达梦驱动包-->
  190. <!--<dependency>-->
  191. <!--<groupId>com.dm</groupId>-->
  192. <!--<artifactId>DmJdbcDriver</artifactId>-->
  193. <!--<version>1.8.0</version>-->
  194. <!--</dependency>-->
  195. <!--mybatisPlus-->
  196. <dependency>
  197. <groupId>com.baomidou</groupId>
  198. <artifactId>mybatis-plus-boot-starter</artifactId>
  199. <version>3.1.1</version>
  200. </dependency>
  201. </dependencies>
  202. </dependencyManagement>
  203. <modules>
  204. <module>ruoyi-admin</module>
  205. <module>ruoyi-framework</module>
  206. <module>ruoyi-system</module>
  207. <module>ruoyi-quartz</module>
  208. <module>ruoyi-generator</module>
  209. <module>ruoyi-common</module>
  210. <module>ruoyi-lddy</module>
  211. </modules>
  212. <packaging>pom</packaging>
  213. <dependencies>
  214. </dependencies>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-compiler-plugin</artifactId>
  220. <version>3.1</version>
  221. <configuration>
  222. <source>${java.version}</source>
  223. <target>${java.version}</target>
  224. <encoding>${project.build.sourceEncoding}</encoding>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. </build>
  229. <repositories>
  230. <repository>
  231. <id>public</id>
  232. <name>aliyun nexus</name>
  233. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  234. <releases>
  235. <enabled>true</enabled>
  236. </releases>
  237. </repository>
  238. </repositories>
  239. <pluginRepositories>
  240. <pluginRepository>
  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. <snapshots>
  248. <enabled>false</enabled>
  249. </snapshots>
  250. </pluginRepository>
  251. </pluginRepositories>
  252. </project>