pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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.4</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.4</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.15</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.20</fastjson.version>
  24. <oshi.version>6.4.0</oshi.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.fileupload.version>1.4</commons.fileupload.version>
  27. <commons.collections.version>3.2.2</commons.collections.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>2.3</velocity.version>
  30. <jwt.version>0.9.1</jwt.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. <!-- 文件上传工具类 -->
  86. <dependency>
  87. <groupId>commons-fileupload</groupId>
  88. <artifactId>commons-fileupload</artifactId>
  89. <version>${commons.fileupload.version}</version>
  90. </dependency>
  91. <!-- excel工具 -->
  92. <dependency>
  93. <groupId>org.apache.poi</groupId>
  94. <artifactId>poi-ooxml</artifactId>
  95. <version>${poi.version}</version>
  96. </dependency>
  97. <!-- velocity代码生成使用模板 -->
  98. <dependency>
  99. <groupId>org.apache.velocity</groupId>
  100. <artifactId>velocity-engine-core</artifactId>
  101. <version>${velocity.version}</version>
  102. </dependency>
  103. <!-- collections工具类 -->
  104. <dependency>
  105. <groupId>commons-collections</groupId>
  106. <artifactId>commons-collections</artifactId>
  107. <version>${commons.collections.version}</version>
  108. </dependency>
  109. <!-- 阿里JSON解析器 -->
  110. <dependency>
  111. <groupId>com.alibaba.fastjson2</groupId>
  112. <artifactId>fastjson2</artifactId>
  113. <version>${fastjson.version}</version>
  114. </dependency>
  115. <!-- Token生成与解析-->
  116. <dependency>
  117. <groupId>io.jsonwebtoken</groupId>
  118. <artifactId>jjwt</artifactId>
  119. <version>${jwt.version}</version>
  120. </dependency>
  121. <!-- 验证码 -->
  122. <dependency>
  123. <groupId>pro.fessional</groupId>
  124. <artifactId>kaptcha</artifactId>
  125. <version>${kaptcha.version}</version>
  126. </dependency>
  127. <!-- 定时任务-->
  128. <dependency>
  129. <groupId>com.ruoyi</groupId>
  130. <artifactId>ruoyi-quartz</artifactId>
  131. <version>${ruoyi.version}</version>
  132. </dependency>
  133. <!-- 代码生成-->
  134. <dependency>
  135. <groupId>com.ruoyi</groupId>
  136. <artifactId>ruoyi-generator</artifactId>
  137. <version>${ruoyi.version}</version>
  138. </dependency>
  139. <!-- 核心模块-->
  140. <dependency>
  141. <groupId>com.ruoyi</groupId>
  142. <artifactId>ruoyi-framework</artifactId>
  143. <version>${ruoyi.version}</version>
  144. </dependency>
  145. <!-- 系统模块-->
  146. <dependency>
  147. <groupId>com.ruoyi</groupId>
  148. <artifactId>ruoyi-system</artifactId>
  149. <version>${ruoyi.version}</version>
  150. </dependency>
  151. <!-- OKC模块-->
  152. <dependency>
  153. <groupId>com.ruoyi</groupId>
  154. <artifactId>okc</artifactId>
  155. <version>${ruoyi.version}</version>
  156. </dependency>
  157. <!-- 通用工具-->
  158. <dependency>
  159. <groupId>com.ruoyi</groupId>
  160. <artifactId>ruoyi-common</artifactId>
  161. <version>${ruoyi.version}</version>
  162. </dependency>
  163. </dependencies>
  164. </dependencyManagement>
  165. <modules>
  166. <module>ruoyi-admin</module>
  167. <module>ruoyi-framework</module>
  168. <module>ruoyi-system</module>
  169. <module>okc</module>
  170. <module>ruoyi-quartz</module>
  171. <module>ruoyi-generator</module>
  172. <module>ruoyi-common</module>
  173. </modules>
  174. <packaging>pom</packaging>
  175. <dependencies>
  176. </dependencies>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-compiler-plugin</artifactId>
  182. <version>3.1</version>
  183. <configuration>
  184. <source>${java.version}</source>
  185. <target>${java.version}</target>
  186. <encoding>${project.build.sourceEncoding}</encoding>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. <repositories>
  192. <repository>
  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. </repository>
  200. </repositories>
  201. <pluginRepositories>
  202. <pluginRepository>
  203. <id>public</id>
  204. <name>aliyun nexus</name>
  205. <url>https://maven.aliyun.com/repository/public</url>
  206. <releases>
  207. <enabled>true</enabled>
  208. </releases>
  209. <snapshots>
  210. <enabled>false</enabled>
  211. </snapshots>
  212. </pluginRepository>
  213. </pluginRepositories>
  214. </project>