123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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.huiju</groupId>
  12. <artifactId>xiangsong</artifactId>
  13. <version>1.3.2</version>
  14. <name>xiangsong</name>
  15. <description>香颂</description>
  16. <properties>
  17. <log4j2.version>2.16.0</log4j2.version>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-configuration-processor</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. <version>3.1.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-websocket</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <scope>runtime</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.github.binarywang</groupId>
  56. <artifactId>weixin-java-miniapp</artifactId>
  57. <version>3.8.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.binarywang</groupId>
  61. <artifactId>weixin-java-mp</artifactId>
  62. <version>3.8.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.binarywang</groupId>
  66. <artifactId>weixin-java-pay</artifactId>
  67. <version>3.8.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>fastjson</artifactId>
  72. <version>1.2.56</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt-api</artifactId>
  77. <version>0.10.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.jsonwebtoken</groupId>
  81. <artifactId>jjwt-impl</artifactId>
  82. <version>0.10.5</version>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.jsonwebtoken</groupId>
  87. <artifactId>jjwt-jackson</artifactId>
  88. <version>0.10.5</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.aliyun.oss</groupId>
  93. <artifactId>aliyun-sdk-oss</artifactId>
  94. <version>2.8.3</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.aliyun</groupId>
  98. <artifactId>aliyun-java-sdk-core</artifactId>
  99. <version>[4.4.9,5.0.0)</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  102. <dependency>
  103. <groupId>org.dom4j</groupId>
  104. <artifactId>dom4j</artifactId>
  105. <version>2.1.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.jodd</groupId>
  109. <artifactId>jodd-bean</artifactId>
  110. <version>3.7.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-collections</groupId>
  114. <artifactId>commons-collections</artifactId>
  115. <version>3.2.1</version>
  116. </dependency>
  117. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  118. <dependency>
  119. <groupId>com.google.guava</groupId>
  120. <artifactId>guava</artifactId>
  121. <version>26.0-jre</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  124. <dependency>
  125. <groupId>com.alibaba</groupId>
  126. <artifactId>easyexcel</artifactId>
  127. <version>2.0.4</version>
  128. </dependency>
  129. <!-- swagger2 -->
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger2</artifactId>
  133. <version>2.7.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>io.springfox</groupId>
  137. <artifactId>springfox-swagger-ui</artifactId>
  138. <version>2.7.0</version>
  139. </dependency>
  140. <!-- aop 依赖 -->
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-starter-aop</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.github.whvcse</groupId>
  147. <artifactId>easy-captcha</artifactId>
  148. <version>1.6.2</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>fadada</groupId>
  152. <artifactId>fadada_api_sdk</artifactId>
  153. <version>2.4.0</version>
  154. <scope>system</scope>
  155. <systemPath>${pom.basedir}/src/main/resources/lib/fadada_api_sdk_2.4.0.jar</systemPath>
  156. </dependency>
  157. </dependencies>
  158. <profiles>
  159. <profile>
  160. <id>dev</id>
  161. <properties>
  162. <profiles.active>dev</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. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-resources-plugin</artifactId>
  181. <configuration>
  182. <encoding>UTF-8</encoding>
  183. <nonFilteredFileExtensions>
  184. <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
  185. <nonFilteredFileExtension>xls</nonFilteredFileExtension>
  186. </nonFilteredFileExtensions>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. <resources>
  191. <resource>
  192. <directory>${basedir}/src/main/resources/lib</directory>
  193. <targetPath>BOOT-INF/lib/</targetPath>
  194. <includes>
  195. <include>**/*.jar</include>
  196. </includes>
  197. </resource>
  198. <resource>
  199. <directory>src/main/resources</directory>
  200. <filtering>true</filtering>
  201. <includes>
  202. <include>application.yml</include>
  203. <include>application-${profiles.active}.yml</include>
  204. <include>mapper/**/*.xml</include>
  205. <include>*.xlsx</include>
  206. <include>*.xls</include>
  207. <include>log/*.xml</include>
  208. <include>lib/*.jar</include>
  209. </includes>
  210. </resource>
  211. </resources>
  212. </build>
  213. <!-- <build>-->
  214. <!-- <plugins>-->
  215. <!-- <plugin>-->
  216. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  217. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  218. <!-- <configuration>-->
  219. <!-- <encoding>UTF-8</encoding>-->
  220. <!-- <nonFilteredFileExtensions>-->
  221. <!-- <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>-->
  222. <!-- <nonFilteredFileExtension>xls</nonFilteredFileExtension>-->
  223. <!-- </nonFilteredFileExtensions>-->
  224. <!-- </configuration>-->
  225. <!-- </plugin>-->
  226. <!-- </plugins>-->
  227. <!-- <resources>-->
  228. <!-- <resource>-->
  229. <!-- <directory>src/main/resources</directory>-->
  230. <!-- <filtering>true</filtering>-->
  231. <!-- </resource>-->
  232. <!-- </resources>-->
  233. <!-- </build>-->
  234. </project>