pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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.deer</groupId>
  7. <artifactId>wms-parent</artifactId>
  8. <version>3.3</version>
  9. <properties>
  10. <deer.version>3.3</deer.version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. <shiro.version>1.4.0</shiro.version>
  15. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  16. <mybatis.boot.version>1.3.2</mybatis.boot.version>
  17. <druid.version>1.1.14</druid.version>
  18. <bitwalker.version>1.19</bitwalker.version>
  19. <kaptcha.version>2.3.2</kaptcha.version>
  20. <swagger.version>2.7.0</swagger.version>
  21. <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
  22. <oshi.version>3.9.1</oshi.version>
  23. <commons.io.version>2.5</commons.io.version>
  24. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  25. <jsoup.version>1.15.3</jsoup.version>
  26. <poi.version>3.16</poi.version>
  27. <velocity.version>1.7</velocity.version>
  28. </properties>
  29. <!-- 依赖声明 -->
  30. <dependencyManagement>
  31. <dependencies>
  32. <!-- SpringBoot的依赖配置-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-dependencies</artifactId>
  36. <version>2.1.1.RELEASE</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <!--阿里数据库连接池 -->
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>druid-spring-boot-starter</artifactId>
  44. <version>${druid.version}</version>
  45. </dependency>
  46. <!--验证码 -->
  47. <dependency>
  48. <groupId>com.github.penggle</groupId>
  49. <artifactId>kaptcha</artifactId>
  50. <version>${kaptcha.version}</version>
  51. </dependency>
  52. <!--Shiro核心框架 -->
  53. <dependency>
  54. <groupId>org.apache.shiro</groupId>
  55. <artifactId>shiro-core</artifactId>
  56. <version>${shiro.version}</version>
  57. </dependency>
  58. <!-- Shiro使用Srping框架 -->
  59. <dependency>
  60. <groupId>org.apache.shiro</groupId>
  61. <artifactId>shiro-spring</artifactId>
  62. <version>${shiro.version}</version>
  63. </dependency>
  64. <!-- Shiro使用EhCache缓存框架 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-ehcache</artifactId>
  68. <version>${shiro.version}</version>
  69. </dependency>
  70. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  71. <dependency>
  72. <groupId>com.github.theborakompanioni</groupId>
  73. <artifactId>thymeleaf-extras-shiro</artifactId>
  74. <version>${thymeleaf.extras.shiro.version}</version>
  75. </dependency>
  76. <!-- 解析客户端操作系统、浏览器等 -->
  77. <dependency>
  78. <groupId>eu.bitwalker</groupId>
  79. <artifactId>UserAgentUtils</artifactId>
  80. <version>${bitwalker.version}</version>
  81. </dependency>
  82. <!-- pagehelper 分页插件 -->
  83. <dependency>
  84. <groupId>com.github.pagehelper</groupId>
  85. <artifactId>pagehelper-spring-boot-starter</artifactId>
  86. <version>${pagehelper.boot.version}</version>
  87. </dependency>
  88. <!-- 获取系统信息 -->
  89. <dependency>
  90. <groupId>com.github.oshi</groupId>
  91. <artifactId>oshi-core</artifactId>
  92. <version>${oshi.version}</version>
  93. </dependency>
  94. <!-- swagger2-->
  95. <dependency>
  96. <groupId>io.springfox</groupId>
  97. <artifactId>springfox-swagger2</artifactId>
  98. <version>${swagger.version}</version>
  99. </dependency>
  100. <!-- swagger2-UI-->
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-swagger-ui</artifactId>
  104. <version>${swagger.version}</version>
  105. </dependency>
  106. <!--io常用工具类 -->
  107. <dependency>
  108. <groupId>commons-io</groupId>
  109. <artifactId>commons-io</artifactId>
  110. <version>${commons.io.version}</version>
  111. </dependency>
  112. <!--文件上传工具类 -->
  113. <dependency>
  114. <groupId>commons-fileupload</groupId>
  115. <artifactId>commons-fileupload</artifactId>
  116. <version>${commons.fileupload.version}</version>
  117. </dependency>
  118. <!-- HTML解析器 -->
  119. <dependency>
  120. <groupId>org.jsoup</groupId>
  121. <artifactId>jsoup</artifactId>
  122. <version>${jsoup.version}</version>
  123. </dependency>
  124. <!-- excel工具 -->
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi-ooxml</artifactId>
  128. <version>${poi.version}</version>
  129. </dependency>
  130. <!--velocity代码生成使用模板 -->
  131. <dependency>
  132. <groupId>org.apache.velocity</groupId>
  133. <artifactId>velocity</artifactId>
  134. <version>${velocity.version}</version>
  135. </dependency>
  136. </dependencies>
  137. </dependencyManagement>
  138. <modules>
  139. <module>wms-admin</module>
  140. <module>wms-framework</module>
  141. <module>wms-system</module>
  142. <module>wms-quartz</module>
  143. <module>wms-generator</module>
  144. <module>wms-common</module>
  145. <module>wms-base-system</module>
  146. </modules>
  147. <packaging>pom</packaging>
  148. <dependencies>
  149. </dependencies>
  150. <build>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-compiler-plugin</artifactId>
  155. <configuration>
  156. <source>${java.version}</source>
  157. <target>${java.version}</target>
  158. <encoding>${project.build.sourceEncoding}</encoding>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. <repositories>
  164. <repository>
  165. <id>public</id>
  166. <name>aliyun nexus</name>
  167. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  168. <releases>
  169. <enabled>true</enabled>
  170. </releases>
  171. </repository>
  172. </repositories>
  173. <pluginRepositories>
  174. <pluginRepository>
  175. <id>public</id>
  176. <name>aliyun nexus</name>
  177. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  178. <releases>
  179. <enabled>true</enabled>
  180. </releases>
  181. <snapshots>
  182. <enabled>false</enabled>
  183. </snapshots>
  184. </pluginRepository>
  185. </pluginRepositories>
  186. </project>