pom.xml 7.6 KB

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