pom.xml 11 KB

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