pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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.5.3</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. <easyexcel.version>2.2.4</easyexcel.version>
  33. <!--Activiti 启动器版本-->
  34. <!--<activiti.starter.version>6.0.0</activiti.starter.version>-->
  35. <activiti.version>6.0.0</activiti.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- SpringBoot的依赖配置-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-dependencies</artifactId>
  44. <version>2.1.1.RELEASE</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <!--阿里数据库连接池 -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. <version>${druid.version}</version>
  53. </dependency>
  54. <!--验证码 -->
  55. <dependency>
  56. <groupId>com.github.penggle</groupId>
  57. <artifactId>kaptcha</artifactId>
  58. <version>${kaptcha.version}</version>
  59. </dependency>
  60. <!--Shiro核心框架 -->
  61. <dependency>
  62. <groupId>org.apache.shiro</groupId>
  63. <artifactId>shiro-core</artifactId>
  64. <version>${shiro.version}</version>
  65. </dependency>
  66. <!-- Shiro使用Srping框架 -->
  67. <dependency>
  68. <groupId>org.apache.shiro</groupId>
  69. <artifactId>shiro-spring</artifactId>
  70. <version>${shiro.version}</version>
  71. </dependency>
  72. <!-- Shiro使用EhCache缓存框架 -->
  73. <dependency>
  74. <groupId>org.apache.shiro</groupId>
  75. <artifactId>shiro-ehcache</artifactId>
  76. <version>${shiro.version}</version>
  77. </dependency>
  78. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  79. <dependency>
  80. <groupId>com.github.theborakompanioni</groupId>
  81. <artifactId>thymeleaf-extras-shiro</artifactId>
  82. <version>${thymeleaf.extras.shiro.version}</version>
  83. </dependency>
  84. <!-- 解析客户端操作系统、浏览器等 -->
  85. <dependency>
  86. <groupId>eu.bitwalker</groupId>
  87. <artifactId>UserAgentUtils</artifactId>
  88. <version>${bitwalker.version}</version>
  89. </dependency>
  90. <!-- pagehelper 分页插件 -->
  91. <dependency>
  92. <groupId>com.github.pagehelper</groupId>
  93. <artifactId>pagehelper-spring-boot-starter</artifactId>
  94. <version>${pagehelper.boot.version}</version>
  95. </dependency>
  96. <!-- 获取系统信息 -->
  97. <dependency>
  98. <groupId>com.github.oshi</groupId>
  99. <artifactId>oshi-core</artifactId>
  100. <version>${oshi.version}</version>
  101. </dependency>
  102. <!-- swagger2-->
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>${swagger.version}</version>
  107. <exclusions>
  108. <exclusion>
  109. <groupId>io.swagger</groupId>
  110. <artifactId>swagger-annotations</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>io.swagger</groupId>
  114. <artifactId>swagger-models</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <!-- swagger2-UI-->
  119. <dependency>
  120. <groupId>io.springfox</groupId>
  121. <artifactId>springfox-swagger-ui</artifactId>
  122. <version>${swagger.version}</version>
  123. </dependency>
  124. <!--io常用工具类 -->
  125. <dependency>
  126. <groupId>commons-io</groupId>
  127. <artifactId>commons-io</artifactId>
  128. <version>${commons.io.version}</version>
  129. </dependency>
  130. <!--文件上传工具类 -->
  131. <dependency>
  132. <groupId>commons-fileupload</groupId>
  133. <artifactId>commons-fileupload</artifactId>
  134. <version>${commons.fileupload.version}</version>
  135. </dependency>
  136. <!-- HTML解析器 -->
  137. <dependency>
  138. <groupId>org.jsoup</groupId>
  139. <artifactId>jsoup</artifactId>
  140. <version>${jsoup.version}</version>
  141. </dependency>
  142. <!-- excel工具 -->
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi-ooxml</artifactId>
  146. <version>${poi.version}</version>
  147. </dependency>
  148. <!--velocity代码生成使用模板 -->
  149. <dependency>
  150. <groupId>org.apache.velocity</groupId>
  151. <artifactId>velocity</artifactId>
  152. <version>${velocity.version}</version>
  153. </dependency>
  154. <!-- 阿里JSON解析器 -->
  155. <dependency>
  156. <groupId>com.alibaba</groupId>
  157. <artifactId>fastjson</artifactId>
  158. <version>${fastjson.version}</version>
  159. </dependency>
  160. <!--easyExcel-->
  161. <dependency>
  162. <groupId>com.alibaba</groupId>
  163. <artifactId>easyexcel</artifactId>
  164. <version>${easyexcel.version}</version>
  165. </dependency>
  166. <!-- 定时任务-->
  167. <dependency>
  168. <groupId>com.ruoyi</groupId>
  169. <artifactId>ruoyi-quartz</artifactId>
  170. <version>${ruoyi.version}</version>
  171. </dependency>
  172. <!-- 代码生成-->
  173. <dependency>
  174. <groupId>com.ruoyi</groupId>
  175. <artifactId>ruoyi-generator</artifactId>
  176. <version>${ruoyi.version}</version>
  177. </dependency>
  178. <!-- 核心模块-->
  179. <dependency>
  180. <groupId>com.ruoyi</groupId>
  181. <artifactId>ruoyi-framework</artifactId>
  182. <version>${ruoyi.version}</version>
  183. </dependency>
  184. <!-- 系统模块-->
  185. <dependency>
  186. <groupId>com.ruoyi</groupId>
  187. <artifactId>ruoyi-system</artifactId>
  188. <version>${ruoyi.version}</version>
  189. </dependency>
  190. <!-- 通用工具-->
  191. <dependency>
  192. <groupId>com.ruoyi</groupId>
  193. <artifactId>ruoyi-common</artifactId>
  194. <version>${ruoyi.version}</version>
  195. </dependency>
  196. <!-- 业务基础信息模块-->
  197. <dependency>
  198. <groupId>com.ruoyi</groupId>
  199. <artifactId>ruoyi-ahrs</artifactId>
  200. <version>${ruoyi.version}</version>
  201. </dependency>
  202. <!-- https://mvnrepository.com/artifact/cn.shuibo/rsa-encrypt-body-spring-boot -->
  203. </dependencies>
  204. </dependencyManagement>
  205. <modules>
  206. <module>ruoyi-admin</module>
  207. <module>ruoyi-framework</module>
  208. <module>ruoyi-system</module>
  209. <module>ruoyi-quartz</module>
  210. <module>ruoyi-generator</module>
  211. <module>ruoyi-common</module>
  212. <module>ruoyi-process</module>
  213. <module>ruoyi-ahrs</module>
  214. </modules>
  215. <packaging>pom</packaging>
  216. <build>
  217. <plugins>
  218. <plugin>
  219. <groupId>org.apache.maven.plugins</groupId>
  220. <artifactId>maven-compiler-plugin</artifactId>
  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>