pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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>4.0.0</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</artifactId>
  139. <version>${poi.version}</version>
  140. <exclusions>
  141. <exclusion>
  142. <groupId>org.apache.xmlbeans</groupId>
  143. <artifactId>xmlbeans</artifactId>
  144. </exclusion>
  145. </exclusions>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.xmlbeans</groupId>
  149. <artifactId>xmlbeans</artifactId>
  150. <version>3.1.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>${poi.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.poi</groupId>
  159. <artifactId>poi-ooxml-schemas</artifactId>
  160. <version>${poi.version}</version>
  161. </dependency>
  162. <!--velocity代码生成使用模板 -->
  163. <dependency>
  164. <groupId>org.apache.velocity</groupId>
  165. <artifactId>velocity</artifactId>
  166. <version>${velocity.version}</version>
  167. </dependency>
  168. <!-- 阿里JSON解析器 -->
  169. <dependency>
  170. <groupId>com.alibaba</groupId>
  171. <artifactId>fastjson</artifactId>
  172. <version>${fastjson.version}</version>
  173. </dependency>
  174. <!-- 定时任务-->
  175. <dependency>
  176. <groupId>com.ruoyi</groupId>
  177. <artifactId>ruoyi-quartz</artifactId>
  178. <version>${ruoyi.version}</version>
  179. </dependency>
  180. <!-- 代码生成-->
  181. <dependency>
  182. <groupId>com.ruoyi</groupId>
  183. <artifactId>ruoyi-generator</artifactId>
  184. <version>${ruoyi.version}</version>
  185. </dependency>
  186. <!-- 核心模块-->
  187. <dependency>
  188. <groupId>com.ruoyi</groupId>
  189. <artifactId>ruoyi-framework</artifactId>
  190. <version>${ruoyi.version}</version>
  191. </dependency>
  192. <!-- 系统模块-->
  193. <dependency>
  194. <groupId>com.ruoyi</groupId>
  195. <artifactId>ruoyi-system</artifactId>
  196. <version>${ruoyi.version}</version>
  197. </dependency>
  198. <!-- 通用工具-->
  199. <dependency>
  200. <groupId>com.ruoyi</groupId>
  201. <artifactId>ruoyi-common</artifactId>
  202. <version>${ruoyi.version}</version>
  203. </dependency>
  204. </dependencies>
  205. </dependencyManagement>
  206. <modules>
  207. <module>ruoyi-admin</module>
  208. <module>ruoyi-framework</module>
  209. <module>ruoyi-system</module>
  210. <module>ruoyi-quartz</module>
  211. <module>ruoyi-generator</module>
  212. <module>ruoyi-common</module>
  213. </modules>
  214. <packaging>pom</packaging>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-compiler-plugin</artifactId>
  220. <configuration>
  221. <source>${java.version}</source>
  222. <target>${java.version}</target>
  223. <encoding>${project.build.sourceEncoding}</encoding>
  224. </configuration>
  225. </plugin>
  226. </plugins>
  227. </build>
  228. <repositories>
  229. <repository>
  230. <id>public</id>
  231. <name>aliyun nexus</name>
  232. <url>https://maven.aliyun.com/repository/public</url>
  233. <releases>
  234. <enabled>true</enabled>
  235. </releases>
  236. </repository>
  237. </repositories>
  238. <pluginRepositories>
  239. <pluginRepository>
  240. <id>public</id>
  241. <name>aliyun nexus</name>
  242. <url>https://maven.aliyun.com/repository/public</url>
  243. <releases>
  244. <enabled>true</enabled>
  245. </releases>
  246. <snapshots>
  247. <enabled>false</enabled>
  248. </snapshots>
  249. </pluginRepository>
  250. </pluginRepositories>
  251. </project>