pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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.warewms</groupId>
  7. <artifactId>warewms</artifactId>
  8. <version>1.0</version>
  9. <name>warewms-api</name>
  10. <description>warewms platform</description>
  11. <modules>
  12. <module>warewms-admin</module>
  13. <module>warewms-framework</module>
  14. <module>warewms-system</module>
  15. <module>warewms-quartz</module>
  16. <module>warewms-generator</module>
  17. <module>warewms-common</module>
  18. </modules>
  19. <packaging>pom</packaging>
  20. <properties>
  21. <warewms.version>1.0</warewms.version>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  26. <druid.version>1.2.16</druid.version>
  27. <bitwalker.version>1.21</bitwalker.version>
  28. <kaptcha.version>2.3.3</kaptcha.version>
  29. <fastjson.version>2.0.25</fastjson.version>
  30. <oshi.version>6.4.0</oshi.version>
  31. <commons.io.version>2.11.0</commons.io.version>
  32. <commons.collections.version>3.2.2</commons.collections.version>
  33. <poi.version>4.1.2</poi.version>
  34. <velocity.version>2.3</velocity.version>
  35. <jwt.version>0.9.1</jwt.version>
  36. <hutool.version>5.8.16</hutool.version>
  37. <lombok.version>1.18.12</lombok.version>
  38. <mybatis.plus.version>3.5.2</mybatis.plus.version>
  39. <knife4j.spring.version>3.0.3</knife4j.spring.version>
  40. <guava.version>23.0</guava.version>
  41. <guava.retry.version>2.0.0</guava.retry.version>
  42. <iotCommunication.version>1.4.2</iotCommunication.version>
  43. </properties>
  44. <!-- 依赖声明 -->
  45. <dependencyManagement>
  46. <dependencies>
  47. <!-- SpringBoot的依赖配置-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-dependencies</artifactId>
  51. <version>2.5.14</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  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. <!-- 获取系统信息 -->
  68. <dependency>
  69. <groupId>com.github.oshi</groupId>
  70. <artifactId>oshi-core</artifactId>
  71. <version>${oshi.version}</version>
  72. </dependency>
  73. <!-- io常用工具类 -->
  74. <dependency>
  75. <groupId>commons-io</groupId>
  76. <artifactId>commons-io</artifactId>
  77. <version>${commons.io.version}</version>
  78. </dependency>
  79. <!-- excel工具 -->
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi-ooxml</artifactId>
  83. <version>${poi.version}</version>
  84. </dependency>
  85. <!-- velocity代码生成使用模板 -->
  86. <dependency>
  87. <groupId>org.apache.velocity</groupId>
  88. <artifactId>velocity-engine-core</artifactId>
  89. <version>${velocity.version}</version>
  90. </dependency>
  91. <!-- collections工具类 -->
  92. <dependency>
  93. <groupId>commons-collections</groupId>
  94. <artifactId>commons-collections</artifactId>
  95. <version>${commons.collections.version}</version>
  96. </dependency>
  97. <!-- 阿里JSON解析器 -->
  98. <dependency>
  99. <groupId>com.alibaba.fastjson2</groupId>
  100. <artifactId>fastjson2</artifactId>
  101. <version>${fastjson.version}</version>
  102. </dependency>
  103. <!-- Token生成与解析-->
  104. <dependency>
  105. <groupId>io.jsonwebtoken</groupId>
  106. <artifactId>jjwt</artifactId>
  107. <version>${jwt.version}</version>
  108. </dependency>
  109. <!-- 验证码 -->
  110. <dependency>
  111. <groupId>pro.fessional</groupId>
  112. <artifactId>kaptcha</artifactId>
  113. <version>${kaptcha.version}</version>
  114. </dependency>
  115. <!-- 定时任务-->
  116. <dependency>
  117. <groupId>com.warewms</groupId>
  118. <artifactId>warewms-quartz</artifactId>
  119. <version>${warewms.version}</version>
  120. </dependency>
  121. <!-- 代码生成-->
  122. <dependency>
  123. <groupId>com.warewms</groupId>
  124. <artifactId>warewms-generator</artifactId>
  125. <version>${warewms.version}</version>
  126. </dependency>
  127. <!-- 核心模块-->
  128. <dependency>
  129. <groupId>com.warewms</groupId>
  130. <artifactId>warewms-framework</artifactId>
  131. <version>${warewms.version}</version>
  132. </dependency>
  133. <!-- 系统模块-->
  134. <dependency>
  135. <groupId>com.warewms</groupId>
  136. <artifactId>warewms-system</artifactId>
  137. <version>${warewms.version}</version>
  138. </dependency>
  139. <!-- 通用工具-->
  140. <dependency>
  141. <groupId>com.warewms</groupId>
  142. <artifactId>warewms-common</artifactId>
  143. <version>${warewms.version}</version>
  144. </dependency>
  145. <!-- knife4j swagger文档增强 -->
  146. <dependency>
  147. <groupId>com.github.xiaoymin</groupId>
  148. <artifactId>knife4j-spring-boot-starter</artifactId>
  149. <version>${knife4j.spring.version}</version>
  150. </dependency>
  151. <!-- mybatis-plus 增强CRUD -->
  152. <dependency>
  153. <groupId>com.baomidou</groupId>
  154. <artifactId>mybatis-plus-boot-starter</artifactId>
  155. <version>${mybatis.plus.version}</version>
  156. </dependency>
  157. <!-- lombok插件 -->
  158. <dependency>
  159. <groupId>org.projectlombok</groupId>
  160. <artifactId>lombok</artifactId>
  161. <version>${lombok.version}</version>
  162. </dependency>
  163. <!-- Java工具类库 -->
  164. <dependency>
  165. <groupId>cn.hutool</groupId>
  166. <artifactId>hutool-all</artifactId>
  167. <version>${hutool.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.google.guava</groupId>
  171. <artifactId>guava</artifactId>
  172. <version>${guava.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.github.rholder</groupId>
  176. <artifactId>guava-retrying</artifactId>
  177. <version>${guava.retry.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.github.xingshuangs</groupId>
  181. <artifactId>iot-communication</artifactId>
  182. <version>${iotCommunication.version}</version>
  183. </dependency>
  184. </dependencies>
  185. </dependencyManagement>
  186. <build>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-compiler-plugin</artifactId>
  191. <version>3.1</version>
  192. <configuration>
  193. <source>${java.version}</source>
  194. <target>${java.version}</target>
  195. <encoding>${project.build.sourceEncoding}</encoding>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. <repositories>
  201. <repository>
  202. <id>public</id>
  203. <name>aliyun nexus</name>
  204. <url>https://maven.aliyun.com/repository/public</url>
  205. <releases>
  206. <enabled>true</enabled>
  207. </releases>
  208. </repository>
  209. </repositories>
  210. <pluginRepositories>
  211. <pluginRepository>
  212. <id>public</id>
  213. <name>aliyun nexus</name>
  214. <url>https://maven.aliyun.com/repository/public</url>
  215. <releases>
  216. <enabled>true</enabled>
  217. </releases>
  218. <snapshots>
  219. <enabled>false</enabled>
  220. </snapshots>
  221. </pluginRepository>
  222. </pluginRepositories>
  223. </project>