pom.xml 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.yunzhi</groupId>
  12. <artifactId>marketing</artifactId>
  13. <version>v1.0.33</version>
  14. <name>marketing-cloud</name>
  15. <description>新联康营销云</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-configuration-processor</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>3.1.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-websocket</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.binarywang</groupId>
  55. <artifactId>weixin-java-miniapp</artifactId>
  56. <version>3.8.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.binarywang</groupId>
  60. <artifactId>weixin-java-mp</artifactId>
  61. <version>3.8.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.github.binarywang</groupId>
  65. <artifactId>weixin-java-cp</artifactId>
  66. <version>3.8.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.github.binarywang</groupId>
  70. <artifactId>weixin-java-pay</artifactId>
  71. <version>3.8.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>1.2.56</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.jsonwebtoken</groupId>
  80. <artifactId>jjwt-api</artifactId>
  81. <version>0.10.5</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.jsonwebtoken</groupId>
  85. <artifactId>jjwt-impl</artifactId>
  86. <version>0.10.5</version>
  87. <scope>runtime</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.jsonwebtoken</groupId>
  91. <artifactId>jjwt-jackson</artifactId>
  92. <version>0.10.5</version>
  93. <scope>runtime</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.aliyun.oss</groupId>
  97. <artifactId>aliyun-sdk-oss</artifactId>
  98. <version>2.8.3</version>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  101. <dependency>
  102. <groupId>org.dom4j</groupId>
  103. <artifactId>dom4j</artifactId>
  104. <version>2.1.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.jodd</groupId>
  108. <artifactId>jodd-bean</artifactId>
  109. <version>3.7.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-collections</groupId>
  113. <artifactId>commons-collections</artifactId>
  114. <version>3.2.1</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  117. <dependency>
  118. <groupId>com.google.guava</groupId>
  119. <artifactId>guava</artifactId>
  120. <version>26.0-jre</version>
  121. </dependency>
  122. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>easyexcel</artifactId>
  126. <version>2.0.4</version>
  127. </dependency>
  128. <!-- swagger2 -->
  129. <dependency>
  130. <groupId>io.springfox</groupId>
  131. <artifactId>springfox-swagger2</artifactId>
  132. <version>2.7.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>io.springfox</groupId>
  136. <artifactId>springfox-swagger-ui</artifactId>
  137. <version>2.7.0</version>
  138. </dependency>
  139. <!-- aop 依赖 -->
  140. <dependency>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-starter-aop</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>fadada</groupId>
  146. <artifactId>fadada_api_sdk</artifactId>
  147. <version>2.4.0</version>
  148. <scope>system</scope>
  149. <systemPath>${pom.basedir}/src/main/resources/lib/fadada_api_sdk_2.4.0.jar</systemPath>
  150. </dependency>
  151. </dependencies>
  152. <profiles>
  153. <profile>
  154. <id>dev</id>
  155. <properties>
  156. <profiles.active>dev</profiles.active>
  157. </properties>
  158. </profile>
  159. <profile>
  160. <id>test</id>
  161. <properties>
  162. <profiles.active>test</profiles.active>
  163. </properties>
  164. </profile>
  165. <profile>
  166. <id>prod</id>
  167. <properties>
  168. <profiles.active>prod</profiles.active>
  169. </properties>
  170. </profile>
  171. </profiles>
  172. <build>
  173. <plugins>
  174. <plugin>
  175. <groupId>org.springframework.boot</groupId>
  176. <artifactId>spring-boot-maven-plugin</artifactId>
  177. </plugin>
  178. </plugins>
  179. <resources>
  180. <resource>
  181. <directory>${basedir}/src/main/resources/lib</directory>
  182. <targetPath>BOOT-INF/lib/</targetPath>
  183. <includes>
  184. <include>**/*.jar</include>
  185. </includes>
  186. </resource>
  187. <resource>
  188. <directory>src/main/resources</directory>
  189. <filtering>true</filtering>
  190. <includes>
  191. <include>application.yml</include>
  192. <include>application-${profiles.active}.yml</include>
  193. <include>mapper/**/*.xml</include>
  194. <include>log/*.xml</include>
  195. <include>lib/*.jar</include>
  196. </includes>
  197. </resource>
  198. </resources>
  199. </build>
  200. </project>