pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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.23</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. </properties>
  31. <parent>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-parent</artifactId>
  34. <version>2.7.6</version>
  35. </parent>
  36. <!-- 依赖声明 -->
  37. <dependencyManagement>
  38. <dependencies>
  39. <!-- 数据库连接池 -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid-spring-boot-starter</artifactId>
  43. <version>${druid.version}</version>
  44. </dependency>
  45. <!-- 解析客户端操作系统、浏览器等 -->
  46. <dependency>
  47. <groupId>eu.bitwalker</groupId>
  48. <artifactId>UserAgentUtils</artifactId>
  49. <version>${bitwalker.version}</version>
  50. </dependency>
  51. <!-- pagehelper 分页插件 -->
  52. <dependency>
  53. <groupId>com.github.pagehelper</groupId>
  54. <artifactId>pagehelper-spring-boot-starter</artifactId>
  55. <version>${pagehelper.boot.version}</version>
  56. <!-- 排除mybatis引入,防止与mybatis-plus冲突 -->
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.mybatis</groupId>
  60. <artifactId>mybatis</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <!-- 获取系统信息 -->
  65. <dependency>
  66. <groupId>com.github.oshi</groupId>
  67. <artifactId>oshi-core</artifactId>
  68. <version>${oshi.version}</version>
  69. </dependency>
  70. <!-- Swagger3依赖 -->
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-boot-starter</artifactId>
  74. <version>${swagger.version}</version>
  75. <exclusions>
  76. <exclusion>
  77. <groupId>io.swagger</groupId>
  78. <artifactId>swagger-models</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <!-- io常用工具类 -->
  83. <dependency>
  84. <groupId>commons-io</groupId>
  85. <artifactId>commons-io</artifactId>
  86. <version>${commons.io.version}</version>
  87. </dependency>
  88. <!-- excel工具 -->
  89. <dependency>
  90. <groupId>org.apache.poi</groupId>
  91. <artifactId>poi-ooxml</artifactId>
  92. <version>${poi.version}</version>
  93. </dependency>
  94. <!-- velocity代码生成使用模板 -->
  95. <dependency>
  96. <groupId>org.apache.velocity</groupId>
  97. <artifactId>velocity-engine-core</artifactId>
  98. <version>${velocity.version}</version>
  99. </dependency>
  100. <!-- collections工具类 -->
  101. <dependency>
  102. <groupId>commons-collections</groupId>
  103. <artifactId>commons-collections</artifactId>
  104. <version>${commons.collections.version}</version>
  105. </dependency>
  106. <!-- 阿里JSON解析器 -->
  107. <dependency>
  108. <groupId>com.alibaba.fastjson2</groupId>
  109. <artifactId>fastjson2</artifactId>
  110. <version>${fastjson.version}</version>
  111. </dependency>
  112. <!-- Token生成与解析-->
  113. <dependency>
  114. <groupId>io.jsonwebtoken</groupId>
  115. <artifactId>jjwt</artifactId>
  116. <version>${jwt.version}</version>
  117. </dependency>
  118. <!-- 验证码 -->
  119. <dependency>
  120. <groupId>pro.fessional</groupId>
  121. <artifactId>kaptcha</artifactId>
  122. <version>${kaptcha.version}</version>
  123. </dependency>
  124. <!-- 定时任务-->
  125. <dependency>
  126. <groupId>com.ruoyi</groupId>
  127. <artifactId>ruoyi-quartz</artifactId>
  128. <version>${ruoyi.version}</version>
  129. </dependency>
  130. <!-- 代码生成-->
  131. <dependency>
  132. <groupId>com.ruoyi</groupId>
  133. <artifactId>ruoyi-generator</artifactId>
  134. <version>${ruoyi.version}</version>
  135. </dependency>
  136. <!-- 核心模块-->
  137. <dependency>
  138. <groupId>com.ruoyi</groupId>
  139. <artifactId>ruoyi-framework</artifactId>
  140. <version>${ruoyi.version}</version>
  141. </dependency>
  142. <!-- 系统模块-->
  143. <dependency>
  144. <groupId>com.ruoyi</groupId>
  145. <artifactId>ruoyi-system</artifactId>
  146. <version>${ruoyi.version}</version>
  147. </dependency>
  148. <!-- 通用工具-->
  149. <dependency>
  150. <groupId>com.ruoyi</groupId>
  151. <artifactId>ruoyi-common</artifactId>
  152. <version>${ruoyi.version}</version>
  153. </dependency>
  154. </dependencies>
  155. </dependencyManagement>
  156. <modules>
  157. <module>ruoyi-admin</module>
  158. <module>ruoyi-framework</module>
  159. <module>ruoyi-system</module>
  160. <module>ruoyi-quartz</module>
  161. <module>ruoyi-generator</module>
  162. <module>ruoyi-common</module>
  163. </modules>
  164. <packaging>pom</packaging>
  165. <dependencies>
  166. </dependencies>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-compiler-plugin</artifactId>
  172. <version>3.1</version>
  173. <configuration>
  174. <source>${java.version}</source>
  175. <target>${java.version}</target>
  176. <encoding>${project.build.sourceEncoding}</encoding>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. <repositories>
  182. <repository>
  183. <id>public</id>
  184. <name>aliyun nexus</name>
  185. <url>https://maven.aliyun.com/repository/public</url>
  186. <releases>
  187. <enabled>true</enabled>
  188. </releases>
  189. </repository>
  190. </repositories>
  191. <pluginRepositories>
  192. <pluginRepository>
  193. <id>public</id>
  194. <name>aliyun nexus</name>
  195. <url>https://maven.aliyun.com/repository/public</url>
  196. <releases>
  197. <enabled>true</enabled>
  198. </releases>
  199. <snapshots>
  200. <enabled>false</enabled>
  201. </snapshots>
  202. </pluginRepository>
  203. </pluginRepositories>
  204. </project>