pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. </properties>
  43. <!-- 依赖声明 -->
  44. <dependencyManagement>
  45. <dependencies>
  46. <!-- SpringBoot的依赖配置-->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-dependencies</artifactId>
  50. <version>2.5.14</version>
  51. <type>pom</type>
  52. <scope>import</scope>
  53. </dependency>
  54. <!-- 阿里数据库连接池 -->
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid-spring-boot-starter</artifactId>
  58. <version>${druid.version}</version>
  59. </dependency>
  60. <!-- 解析客户端操作系统、浏览器等 -->
  61. <dependency>
  62. <groupId>eu.bitwalker</groupId>
  63. <artifactId>UserAgentUtils</artifactId>
  64. <version>${bitwalker.version}</version>
  65. </dependency>
  66. <!-- 获取系统信息 -->
  67. <dependency>
  68. <groupId>com.github.oshi</groupId>
  69. <artifactId>oshi-core</artifactId>
  70. <version>${oshi.version}</version>
  71. </dependency>
  72. <!-- io常用工具类 -->
  73. <dependency>
  74. <groupId>commons-io</groupId>
  75. <artifactId>commons-io</artifactId>
  76. <version>${commons.io.version}</version>
  77. </dependency>
  78. <!-- excel工具 -->
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml</artifactId>
  82. <version>${poi.version}</version>
  83. </dependency>
  84. <!-- velocity代码生成使用模板 -->
  85. <dependency>
  86. <groupId>org.apache.velocity</groupId>
  87. <artifactId>velocity-engine-core</artifactId>
  88. <version>${velocity.version}</version>
  89. </dependency>
  90. <!-- collections工具类 -->
  91. <dependency>
  92. <groupId>commons-collections</groupId>
  93. <artifactId>commons-collections</artifactId>
  94. <version>${commons.collections.version}</version>
  95. </dependency>
  96. <!-- 阿里JSON解析器 -->
  97. <dependency>
  98. <groupId>com.alibaba.fastjson2</groupId>
  99. <artifactId>fastjson2</artifactId>
  100. <version>${fastjson.version}</version>
  101. </dependency>
  102. <!-- Token生成与解析-->
  103. <dependency>
  104. <groupId>io.jsonwebtoken</groupId>
  105. <artifactId>jjwt</artifactId>
  106. <version>${jwt.version}</version>
  107. </dependency>
  108. <!-- 验证码 -->
  109. <dependency>
  110. <groupId>pro.fessional</groupId>
  111. <artifactId>kaptcha</artifactId>
  112. <version>${kaptcha.version}</version>
  113. </dependency>
  114. <!-- 定时任务-->
  115. <dependency>
  116. <groupId>com.warewms</groupId>
  117. <artifactId>warewms-quartz</artifactId>
  118. <version>${warewms.version}</version>
  119. </dependency>
  120. <!-- 代码生成-->
  121. <dependency>
  122. <groupId>com.warewms</groupId>
  123. <artifactId>warewms-generator</artifactId>
  124. <version>${warewms.version}</version>
  125. </dependency>
  126. <!-- 核心模块-->
  127. <dependency>
  128. <groupId>com.warewms</groupId>
  129. <artifactId>warewms-framework</artifactId>
  130. <version>${warewms.version}</version>
  131. </dependency>
  132. <!-- 系统模块-->
  133. <dependency>
  134. <groupId>com.warewms</groupId>
  135. <artifactId>warewms-system</artifactId>
  136. <version>${warewms.version}</version>
  137. </dependency>
  138. <!-- 通用工具-->
  139. <dependency>
  140. <groupId>com.warewms</groupId>
  141. <artifactId>warewms-common</artifactId>
  142. <version>${warewms.version}</version>
  143. </dependency>
  144. <!-- knife4j swagger文档增强 -->
  145. <dependency>
  146. <groupId>com.github.xiaoymin</groupId>
  147. <artifactId>knife4j-spring-boot-starter</artifactId>
  148. <version>${knife4j.spring.version}</version>
  149. </dependency>
  150. <!-- mybatis-plus 增强CRUD -->
  151. <dependency>
  152. <groupId>com.baomidou</groupId>
  153. <artifactId>mybatis-plus-boot-starter</artifactId>
  154. <version>${mybatis.plus.version}</version>
  155. </dependency>
  156. <!-- lombok插件 -->
  157. <dependency>
  158. <groupId>org.projectlombok</groupId>
  159. <artifactId>lombok</artifactId>
  160. <version>${lombok.version}</version>
  161. </dependency>
  162. <!-- Java工具类库 -->
  163. <dependency>
  164. <groupId>cn.hutool</groupId>
  165. <artifactId>hutool-all</artifactId>
  166. <version>${hutool.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.google.guava</groupId>
  170. <artifactId>guava</artifactId>
  171. <version>${guava.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.github.rholder</groupId>
  175. <artifactId>guava-retrying</artifactId>
  176. <version>${guava.retry.version}</version>
  177. </dependency>
  178. </dependencies>
  179. </dependencyManagement>
  180. <build>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-compiler-plugin</artifactId>
  185. <version>3.1</version>
  186. <configuration>
  187. <source>${java.version}</source>
  188. <target>${java.version}</target>
  189. <encoding>${project.build.sourceEncoding}</encoding>
  190. </configuration>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. <repositories>
  195. <repository>
  196. <id>public</id>
  197. <name>aliyun nexus</name>
  198. <url>https://maven.aliyun.com/repository/public</url>
  199. <releases>
  200. <enabled>true</enabled>
  201. </releases>
  202. </repository>
  203. </repositories>
  204. <pluginRepositories>
  205. <pluginRepository>
  206. <id>public</id>
  207. <name>aliyun nexus</name>
  208. <url>https://maven.aliyun.com/repository/public</url>
  209. <releases>
  210. <enabled>true</enabled>
  211. </releases>
  212. <snapshots>
  213. <enabled>false</enabled>
  214. </snapshots>
  215. </pluginRepository>
  216. </pluginRepositories>
  217. </project>