pom.xml 9.2 KB

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