pom.xml 8.3 KB

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