pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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.7.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.2.2</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.47</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. <log4j2.version>2.17.0</log4j2.version>
  33. <thymeleaf.version>3.0.14.RELEASE</thymeleaf.version>
  34. </properties>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- SpringBoot的依赖配置-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-dependencies</artifactId>
  42. <version>2.1.1.RELEASE</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <!--阿里数据库连接池 -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid-spring-boot-starter</artifactId>
  50. <version>${druid.version}</version>
  51. </dependency>
  52. <!--验证码 -->
  53. <dependency>
  54. <groupId>com.github.penggle</groupId>
  55. <artifactId>kaptcha</artifactId>
  56. <version>${kaptcha.version}</version>
  57. </dependency>
  58. <!--Shiro核心框架 -->
  59. <dependency>
  60. <groupId>org.apache.shiro</groupId>
  61. <artifactId>shiro-core</artifactId>
  62. <version>${shiro.version}</version>
  63. </dependency>
  64. <!-- Shiro使用Srping框架 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-spring</artifactId>
  68. <version>${shiro.version}</version>
  69. </dependency>
  70. <!-- Shiro使用EhCache缓存框架 -->
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-ehcache</artifactId>
  74. <version>${shiro.version}</version>
  75. </dependency>
  76. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  77. <dependency>
  78. <groupId>com.github.theborakompanioni</groupId>
  79. <artifactId>thymeleaf-extras-shiro</artifactId>
  80. <version>${thymeleaf.extras.shiro.version}</version>
  81. </dependency>
  82. <!-- thymeleaf模板引擎和spring框架的整合 -->
  83. <dependency>
  84. <groupId>org.thymeleaf</groupId>
  85. <artifactId>thymeleaf-spring5</artifactId>
  86. <version>${thymeleaf.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.thymeleaf</groupId>
  90. <artifactId>thymeleaf</artifactId>
  91. <version>${thymeleaf.version}</version>
  92. </dependency>
  93. <!-- 解析客户端操作系统、浏览器等 -->
  94. <dependency>
  95. <groupId>eu.bitwalker</groupId>
  96. <artifactId>UserAgentUtils</artifactId>
  97. <version>${bitwalker.version}</version>
  98. </dependency>
  99. <!-- pagehelper 分页插件 -->
  100. <dependency>
  101. <groupId>com.github.pagehelper</groupId>
  102. <artifactId>pagehelper-spring-boot-starter</artifactId>
  103. <version>${pagehelper.boot.version}</version>
  104. </dependency>
  105. <!-- 获取系统信息 -->
  106. <dependency>
  107. <groupId>com.github.oshi</groupId>
  108. <artifactId>oshi-core</artifactId>
  109. <version>${oshi.version}</version>
  110. </dependency>
  111. <!-- swagger2-->
  112. <dependency>
  113. <groupId>io.springfox</groupId>
  114. <artifactId>springfox-swagger2</artifactId>
  115. <version>${swagger.version}</version>
  116. <exclusions>
  117. <exclusion>
  118. <groupId>io.swagger</groupId>
  119. <artifactId>swagger-annotations</artifactId>
  120. </exclusion>
  121. <exclusion>
  122. <groupId>io.swagger</groupId>
  123. <artifactId>swagger-models</artifactId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <!-- swagger2-UI-->
  128. <dependency>
  129. <groupId>io.springfox</groupId>
  130. <artifactId>springfox-swagger-ui</artifactId>
  131. <version>${swagger.version}</version>
  132. </dependency>
  133. <!--io常用工具类 -->
  134. <dependency>
  135. <groupId>commons-io</groupId>
  136. <artifactId>commons-io</artifactId>
  137. <version>${commons.io.version}</version>
  138. </dependency>
  139. <!--文件上传工具类 -->
  140. <dependency>
  141. <groupId>commons-fileupload</groupId>
  142. <artifactId>commons-fileupload</artifactId>
  143. <version>${commons.fileupload.version}</version>
  144. </dependency>
  145. <!-- HTML解析器 -->
  146. <dependency>
  147. <groupId>org.jsoup</groupId>
  148. <artifactId>jsoup</artifactId>
  149. <version>${jsoup.version}</version>
  150. </dependency>
  151. <!-- excel工具 -->
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>${poi.version}</version>
  156. </dependency>
  157. <!--velocity代码生成使用模板 -->
  158. <dependency>
  159. <groupId>org.apache.velocity</groupId>
  160. <artifactId>velocity</artifactId>
  161. <version>${velocity.version}</version>
  162. </dependency>
  163. <!-- 阿里JSON解析器 -->
  164. <dependency>
  165. <groupId>com.alibaba</groupId>
  166. <artifactId>fastjson</artifactId>
  167. <version>${fastjson.version}</version>
  168. </dependency>
  169. <!-- 定时任务-->
  170. <dependency>
  171. <groupId>com.ruoyi</groupId>
  172. <artifactId>ruoyi-quartz</artifactId>
  173. <version>${ruoyi.version}</version>
  174. </dependency>
  175. <!-- 代码生成-->
  176. <dependency>
  177. <groupId>com.ruoyi</groupId>
  178. <artifactId>ruoyi-generator</artifactId>
  179. <version>${ruoyi.version}</version>
  180. </dependency>
  181. <!-- 核心模块-->
  182. <dependency>
  183. <groupId>com.ruoyi</groupId>
  184. <artifactId>ruoyi-framework</artifactId>
  185. <version>${ruoyi.version}</version>
  186. </dependency>
  187. <!-- 系统模块-->
  188. <dependency>
  189. <groupId>com.ruoyi</groupId>
  190. <artifactId>ruoyi-system</artifactId>
  191. <version>${ruoyi.version}</version>
  192. </dependency>
  193. <!-- 通用工具-->
  194. <dependency>
  195. <groupId>com.ruoyi</groupId>
  196. <artifactId>ruoyi-common</artifactId>
  197. <version>${ruoyi.version}</version>
  198. </dependency>
  199. <!-- webSocket 开始-->
  200. <dependency>
  201. <groupId>javax.websocket</groupId>
  202. <artifactId>javax.websocket-api</artifactId>
  203. <version>1.1</version>
  204. <scope>provided</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>javax</groupId>
  208. <artifactId>javaee-api</artifactId>
  209. <version>7.0</version>
  210. <scope>provided</scope>
  211. </dependency>
  212. <!-- webSocket 结束-->
  213. <!-- log4j日志组件 -->
  214. <dependency>
  215. <groupId>org.apache.logging.log4j</groupId>
  216. <artifactId>log4j-api</artifactId>
  217. <version>${log4j2.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.logging.log4j</groupId>
  221. <artifactId>log4j-to-slf4j</artifactId>
  222. <version>${log4j2.version}</version>
  223. </dependency>
  224. </dependencies>
  225. </dependencyManagement>
  226. <modules>
  227. <module>ruoyi-admin</module>
  228. <module>ruoyi-framework</module>
  229. <module>ruoyi-system</module>
  230. <module>ruoyi-quartz</module>
  231. <module>ruoyi-generator</module>
  232. <module>ruoyi-common</module>
  233. </modules>
  234. <packaging>pom</packaging>
  235. <dependencies>
  236. </dependencies>
  237. <build>
  238. <plugins>
  239. <plugin>
  240. <groupId>org.apache.maven.plugins</groupId>
  241. <artifactId>maven-compiler-plugin</artifactId>
  242. <version>3.8.1</version>
  243. <configuration>
  244. <source>${java.version}</source>
  245. <target>${java.version}</target>
  246. <encoding>${project.build.sourceEncoding}</encoding>
  247. </configuration>
  248. </plugin>
  249. </plugins>
  250. </build>
  251. <repositories>
  252. <repository>
  253. <id>public</id>
  254. <name>aliyun nexus</name>
  255. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  256. <releases>
  257. <enabled>true</enabled>
  258. </releases>
  259. </repository>
  260. </repositories>
  261. <pluginRepositories>
  262. <pluginRepository>
  263. <id>public</id>
  264. <name>aliyun nexus</name>
  265. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  266. <releases>
  267. <enabled>true</enabled>
  268. </releases>
  269. <snapshots>
  270. <enabled>false</enabled>
  271. </snapshots>
  272. </pluginRepository>
  273. </pluginRepositories>
  274. </project>