pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <parent>
  6. <artifactId>lb-server</artifactId>
  7. <groupId>com.ydd</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lb-app</artifactId>
  12. <dependencies>
  13. <!-- spring-boot-devtools -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-devtools</artifactId>
  17. <optional>true</optional> <!-- 表示依赖不会传递 -->
  18. </dependency>
  19. <!-- SpringCloud Openfeign -->
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-openfeign</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. <groupId>org.springframework.boot</groupId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <!-- swagger2-->
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger2</artifactId>
  38. </dependency>
  39. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  40. <dependency>
  41. <groupId>io.swagger</groupId>
  42. <artifactId>swagger-annotations</artifactId>
  43. <version>1.5.21</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.swagger</groupId>
  47. <artifactId>swagger-models</artifactId>
  48. <version>1.5.21</version>
  49. </dependency>
  50. <!-- swagger2-UI-->
  51. <dependency>
  52. <groupId>io.springfox</groupId>
  53. <artifactId>springfox-swagger-ui</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.xiaoymin</groupId>
  57. <artifactId>swagger-bootstrap-ui</artifactId>
  58. <version>1.9.3</version>
  59. </dependency>
  60. <!-- 定时任务-->
  61. <dependency>
  62. <groupId>com.ydd</groupId>
  63. <artifactId>lb-module</artifactId>
  64. <version>1.0</version>
  65. </dependency>
  66. <!-- 定时任务-->
  67. <dependency>
  68. <groupId>com.ydd</groupId>
  69. <artifactId>lb-core</artifactId>
  70. <version>1.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.ydd</groupId>
  74. <artifactId>lb-feginclient</artifactId>
  75. <version>1.0</version>
  76. </dependency>
  77. <!--<dependency>-->
  78. <!--<groupId>com.ydd</groupId>-->
  79. <!--<artifactId>lb-third-waimai</artifactId>-->
  80. <!--<version>1.0</version>-->
  81. <!--</dependency>-->
  82. <!--<dependency>-->
  83. <!--<groupId>com.ydd</groupId>-->
  84. <!--<artifactId>lb-third-delivery</artifactId>-->
  85. <!--<version>1.0</version>-->
  86. <!--</dependency>-->
  87. <!-- Mysql驱动包 -->
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.ydd</groupId>
  94. <artifactId>lb-system</artifactId>
  95. <version>1.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.binarywang</groupId>
  99. <artifactId>weixin-java-pay</artifactId>
  100. <version>4.0.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.javen205</groupId>
  104. <artifactId>IJPay-All</artifactId>
  105. <version>2.6.3</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alipay.sdk</groupId>
  109. <artifactId>alipay-sdk-java</artifactId>
  110. <version>4.11.54.ALL</version>
  111. </dependency>
  112. <!-- https://mvnrepository.com/artifact/com.getui.push/restful-sdk -->
  113. <dependency>
  114. <groupId>com.getui.push</groupId>
  115. <artifactId>restful-sdk</artifactId>
  116. <version>1.0.0.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.github.binarywang</groupId>
  120. <artifactId>weixin-java-mp</artifactId>
  121. <version>4.0.0</version>
  122. <exclusions>
  123. <exclusion>
  124. <artifactId>xstream</artifactId>
  125. <groupId>com.thoughtworks.xstream</groupId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. </dependencies>
  130. <build>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. <version>2.1.1.RELEASE</version>
  136. <configuration>
  137. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <goals>
  142. <goal>repackage</goal>
  143. </goals>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-war-plugin</artifactId>
  150. <version>3.1.0</version>
  151. <configuration>
  152. <failOnMissingWebXml>false</failOnMissingWebXml>
  153. <warName>${project.artifactId}</warName>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-surefire-plugin</artifactId>
  159. <configuration>
  160. <testFailureIgnore>true</testFailureIgnore>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. <finalName>${project.artifactId}</finalName>
  165. </build>
  166. </project>