pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <groupId>com.tuoren</groupId>
  7. <artifactId>netpump</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <name>netpump</name>
  10. <description>Demo project for Spring Boot</description>
  11. <modules>
  12. <module>pump-common</module>
  13. <module>pump-web</module>
  14. <module>pump-admin</module>
  15. </modules>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.1.5.RELEASE</version>
  20. <relativePath/> <!-- lookup parent from repository -->
  21. </parent>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <spring-boot.version>2.1.5.RELEASE</spring-boot.version>
  27. <druid.version>1.1.21</druid.version>
  28. <hutool.version>4.6.8</hutool.version>
  29. <swagger2.version>2.6.1</swagger2.version>
  30. <fastjson.version>1.2.62</fastjson.version>
  31. <mybatisplus.version>3.2.0</mybatisplus.version>
  32. <mybatisplusGenerator.version>3.2.0</mybatisplusGenerator.version>
  33. <ibeetl.version>3.0.13.RELEASE</ibeetl.version>
  34. <shiro.version>1.4.0</shiro.version>
  35. <shiroRedis.version>3.1.0</shiroRedis.version>
  36. <aliyunPush.version>3.13.0</aliyunPush.version>
  37. <aliyunCore.version>4.3.2</aliyunCore.version>
  38. <commonIo.version>2.6</commonIo.version>
  39. <netty.version>4.1.36.Final</netty.version>
  40. <rabbithttp.version>3.1.1.RELEASE</rabbithttp.version>
  41. </properties>
  42. <dependencies>
  43. <dependency>
  44. <groupId>io.netty</groupId>
  45. <artifactId>netty-all</artifactId>
  46. <version>${netty.version}</version>
  47. </dependency>
  48. <!-- 移动推送使用 Start -->
  49. <dependency>
  50. <groupId>com.aliyun</groupId>
  51. <artifactId>aliyun-java-sdk-push</artifactId>
  52. <version>${aliyunPush.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.aliyun</groupId>
  56. <artifactId>aliyun-java-sdk-core</artifactId>
  57. <version>${aliyunCore.version}</version>
  58. </dependency>
  59. <!-- 移动推送使用 End -->
  60. <!--面向切面 Start -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-aop</artifactId>
  64. </dependency>
  65. <!--面向切面 End -->
  66. <!-- 模板引擎相关 Start -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-web</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.ibeetl</groupId>
  77. <artifactId>beetl</artifactId>
  78. <version>${ibeetl.version}</version>
  79. </dependency>
  80. <!-- 模板引擎相关 End -->
  81. <!--导入配置文件处理器 Start -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-configuration-processor</artifactId>
  85. <optional>true</optional>
  86. </dependency>
  87. <!--导入配置文件处理器 End -->
  88. <!--权限相关 Start -->
  89. <dependency>
  90. <groupId>org.apache.shiro</groupId>
  91. <artifactId>shiro-spring</artifactId>
  92. <version>${shiro.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.shiro</groupId>
  96. <artifactId>shiro-core</artifactId>
  97. <version>${shiro.version}</version>
  98. </dependency>
  99. <!-- Shiro-redis插件 -->
  100. <dependency>
  101. <groupId>org.crazycake</groupId>
  102. <artifactId>shiro-redis</artifactId>
  103. <version>${shiroRedis.version}</version>
  104. </dependency>
  105. <!--权限相关 End -->
  106. <!-- Redis Start -->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  110. </dependency>
  111. <!-- Redis End -->
  112. <!-- druid Start -->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>druid-spring-boot-starter</artifactId>
  116. <version>${druid.version}</version>
  117. </dependency>
  118. <!-- druid End -->
  119. <!-- hutool Start-->
  120. <dependency>
  121. <groupId>cn.hutool</groupId>
  122. <artifactId>hutool-all</artifactId>
  123. <version>${hutool.version}</version>
  124. </dependency>
  125. <!-- hutool End -->
  126. <!-- swagger2 生成接口文档 Start -->
  127. <dependency>
  128. <groupId>io.springfox</groupId>
  129. <artifactId>springfox-swagger2</artifactId>
  130. <version>${swagger2.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.springfox</groupId>
  134. <artifactId>springfox-swagger-ui</artifactId>
  135. <version>${swagger2.version}</version>
  136. </dependency>
  137. <!-- swagger2 生成接口文档 End -->
  138. <!-- fastjson Start -->
  139. <dependency>
  140. <groupId>com.alibaba</groupId>
  141. <artifactId>fastjson</artifactId>
  142. <version>${fastjson.version}</version>
  143. </dependency>
  144. <!-- fastjson End -->
  145. <!--rabbit api远程调用-->
  146. <dependency>
  147. <groupId>com.rabbitmq</groupId>
  148. <artifactId>http-client</artifactId>
  149. <version>${rabbithttp.version}</version>
  150. </dependency>
  151. <!-- 文件监听 -->
  152. <dependency>
  153. <groupId>commons-io</groupId>
  154. <artifactId>commons-io</artifactId>
  155. <version>${commonIo.version}</version>
  156. </dependency>
  157. <!-- 文件监听 -->
  158. <!--mybatisplus 及批量生成 Start -->
  159. <dependency>
  160. <groupId>com.baomidou</groupId>
  161. <artifactId>mybatis-plus-boot-starter</artifactId>
  162. <version>${mybatisplus.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.baomidou</groupId>
  166. <artifactId>mybatis-plus-generator</artifactId>
  167. <version>${mybatisplusGenerator.version}</version>
  168. </dependency>
  169. <!--mybatisplus 及批量生成 End -->
  170. <!-- 开发插件 Start -->
  171. <!-- <dependency>-->
  172. <!-- <groupId>org.springframework.boot</groupId>-->
  173. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  174. <!-- <scope>runtime</scope>-->
  175. <!-- <optional>true</optional>-->
  176. <!-- </dependency>-->
  177. <!-- 开发插件 Start -->
  178. <!-- mysql Start -->
  179. <dependency>
  180. <groupId>mysql</groupId>
  181. <artifactId>mysql-connector-java</artifactId>
  182. <scope>runtime</scope>
  183. </dependency>
  184. <!-- mysql End -->
  185. <!-- rabbitmq 消息队列 Start -->
  186. <dependency>
  187. <groupId>org.springframework.boot</groupId>
  188. <artifactId>spring-boot-starter-amqp</artifactId>
  189. </dependency>
  190. <!-- rabbitmq 消息队列 End -->
  191. <dependency>
  192. <groupId>org.projectlombok</groupId>
  193. <artifactId>lombok</artifactId>
  194. <optional>true</optional>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-starter-test</artifactId>
  199. <scope>test</scope>
  200. <exclusions>
  201. <exclusion>
  202. <groupId>org.junit.vintage</groupId>
  203. <artifactId>junit-vintage-engine</artifactId>
  204. </exclusion>
  205. </exclusions>
  206. </dependency>
  207. </dependencies>
  208. <!-- <dependencyManagement>-->
  209. <!-- <dependencies>-->
  210. <!-- <dependency>-->
  211. <!-- <groupId>org.springframework.boot</groupId>-->
  212. <!-- <artifactId>spring-boot-dependencies</artifactId>-->
  213. <!-- <version>${spring-boot.version}</version>-->
  214. <!-- <type>pom</type>-->
  215. <!-- <scope>import</scope>-->
  216. <!-- </dependency>-->
  217. <!-- </dependencies>-->
  218. <!-- </dependencyManagement>-->
  219. <!-- <build>-->
  220. <!-- <plugins>-->
  221. <!-- <plugin>-->
  222. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  223. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  224. <!-- <configuration>-->
  225. <!-- <source>1.8</source>-->
  226. <!-- <target>1.8</target>-->
  227. <!-- <encoding>UTF-8</encoding>-->
  228. <!-- </configuration>-->
  229. <!-- </plugin>-->
  230. <!-- <plugin>-->
  231. <!-- <groupId>org.springframework.boot</groupId>-->
  232. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  233. <!-- </plugin>-->
  234. <!-- </plugins>-->
  235. <!-- </build>-->
  236. </project>