pom.xml 10 KB

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