pom.xml 9.7 KB

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