pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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>3.8.5</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.5</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. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.16</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  23. <fastjson.version>2.0.25</fastjson.version>
  24. <oshi.version>6.4.0</oshi.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.collections.version>3.2.2</commons.collections.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <lomback.version>1.18.26</lomback.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.5.14</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!-- 阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <!-- 解析客户端操作系统、浏览器等 -->
  50. <dependency>
  51. <groupId>eu.bitwalker</groupId>
  52. <artifactId>UserAgentUtils</artifactId>
  53. <version>${bitwalker.version}</version>
  54. </dependency>
  55. <!-- pagehelper 分页插件 -->
  56. <dependency>
  57. <groupId>com.github.pagehelper</groupId>
  58. <artifactId>pagehelper-spring-boot-starter</artifactId>
  59. <version>${pagehelper.boot.version}</version>
  60. </dependency>
  61. <!-- 获取系统信息 -->
  62. <dependency>
  63. <groupId>com.github.oshi</groupId>
  64. <artifactId>oshi-core</artifactId>
  65. <version>${oshi.version}</version>
  66. </dependency>
  67. <!-- Swagger3依赖 -->
  68. <dependency>
  69. <groupId>io.springfox</groupId>
  70. <artifactId>springfox-boot-starter</artifactId>
  71. <version>${swagger.version}</version>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>io.swagger</groupId>
  75. <artifactId>swagger-models</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <!-- io常用工具类 -->
  80. <dependency>
  81. <groupId>commons-io</groupId>
  82. <artifactId>commons-io</artifactId>
  83. <version>${commons.io.version}</version>
  84. </dependency>
  85. <!-- excel工具 -->
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi</artifactId>
  89. <version>${poi.version}</version>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.apache.xmlbeans</groupId>
  93. <artifactId>xmlbeans</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.xmlbeans</groupId>
  99. <artifactId>xmlbeans</artifactId>
  100. <version>3.1.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.poi</groupId>
  104. <artifactId>poi-ooxml</artifactId>
  105. <version>${poi.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi-ooxml-schemas</artifactId>
  110. <version>${poi.version}</version>
  111. </dependency>
  112. <!-- velocity代码生成使用模板 -->
  113. <dependency>
  114. <groupId>org.apache.velocity</groupId>
  115. <artifactId>velocity-engine-core</artifactId>
  116. <version>${velocity.version}</version>
  117. </dependency>
  118. <!-- collections工具类 -->
  119. <dependency>
  120. <groupId>commons-collections</groupId>
  121. <artifactId>commons-collections</artifactId>
  122. <version>${commons.collections.version}</version>
  123. </dependency>
  124. <!-- 阿里JSON解析器 -->
  125. <dependency>
  126. <groupId>com.alibaba.fastjson2</groupId>
  127. <artifactId>fastjson2</artifactId>
  128. <version>${fastjson.version}</version>
  129. </dependency>
  130. <!-- lomback组件-->
  131. <dependency>
  132. <groupId>org.projectlombok</groupId>
  133. <artifactId>lombok</artifactId>
  134. <version>${lomback.version}</version>
  135. </dependency>
  136. <!-- Token生成与解析-->
  137. <dependency>
  138. <groupId>io.jsonwebtoken</groupId>
  139. <artifactId>jjwt</artifactId>
  140. <version>${jwt.version}</version>
  141. </dependency>
  142. <!-- 验证码 -->
  143. <dependency>
  144. <groupId>pro.fessional</groupId>
  145. <artifactId>kaptcha</artifactId>
  146. <version>${kaptcha.version}</version>
  147. </dependency>
  148. <!-- 定时任务-->
  149. <dependency>
  150. <groupId>com.ruoyi</groupId>
  151. <artifactId>ruoyi-quartz</artifactId>
  152. <version>${ruoyi.version}</version>
  153. </dependency>
  154. <!-- 核心模块-->
  155. <dependency>
  156. <groupId>com.ruoyi</groupId>
  157. <artifactId>ruoyi-framework</artifactId>
  158. <version>${ruoyi.version}</version>
  159. </dependency>
  160. <!-- 系统模块-->
  161. <dependency>
  162. <groupId>com.ruoyi</groupId>
  163. <artifactId>ruoyi-system</artifactId>
  164. <version>${ruoyi.version}</version>
  165. </dependency>
  166. <!-- 通用工具-->
  167. <dependency>
  168. <groupId>com.ruoyi</groupId>
  169. <artifactId>ruoyi-common</artifactId>
  170. <version>${ruoyi.version}</version>
  171. </dependency>
  172. <!-- 二级岗位魔窟奥-->
  173. <dependency>
  174. <groupId>com.ruoyi</groupId>
  175. <artifactId>ruoyi-secondLevel</artifactId>
  176. <version>${ruoyi.version}</version>
  177. </dependency>
  178. </dependencies>
  179. </dependencyManagement>
  180. <modules>
  181. <module>ruoyi-admin</module>
  182. <module>ruoyi-framework</module>
  183. <module>ruoyi-system</module>
  184. <module>ruoyi-quartz</module>
  185. <module>ruoyi-common</module>
  186. <module>ruoyi-secondLevel</module>
  187. </modules>
  188. <packaging>pom</packaging>
  189. <build>
  190. <plugins>
  191. <plugin>
  192. <groupId>org.apache.maven.plugins</groupId>
  193. <artifactId>maven-compiler-plugin</artifactId>
  194. <version>3.1</version>
  195. <configuration>
  196. <source>${java.version}</source>
  197. <target>${java.version}</target>
  198. <encoding>${project.build.sourceEncoding}</encoding>
  199. </configuration>
  200. </plugin>
  201. </plugins>
  202. </build>
  203. <repositories>
  204. <repository>
  205. <id>public</id>
  206. <name>aliyun nexus</name>
  207. <url>https://maven.aliyun.com/repository/public</url>
  208. <releases>
  209. <enabled>true</enabled>
  210. </releases>
  211. </repository>
  212. </repositories>
  213. <pluginRepositories>
  214. <pluginRepository>
  215. <id>public</id>
  216. <name>aliyun nexus</name>
  217. <url>https://maven.aliyun.com/repository/public</url>
  218. <releases>
  219. <enabled>true</enabled>
  220. </releases>
  221. <snapshots>
  222. <enabled>false</enabled>
  223. </snapshots>
  224. </pluginRepository>
  225. </pluginRepositories>
  226. </project>