pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. <parent>
  5. <artifactId>xingxi</artifactId>
  6. <groupId>com.xingxi</groupId>
  7. <version>4.7.9</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>xingxi-miniprogram-api</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <name>xingxi-miniprogram-api</name>
  13. <description>xingxi-miniprogram-api</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.xingxi</groupId>
  17. <artifactId>xingxi-system</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-security</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.jsonwebtoken</groupId>
  25. <artifactId>jjwt-api</artifactId>
  26. <version>0.11.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.jsonwebtoken</groupId>
  30. <artifactId>jjwt-impl</artifactId>
  31. <version>0.11.2</version>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  37. <version>0.11.2</version>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-amqp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. <version>1.4.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid-spring-boot-starter</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.jhlabs</groupId>
  59. <artifactId>filters</artifactId>
  60. <version>2.0.235-1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.coobird</groupId>
  64. <artifactId>thumbnailator</artifactId>
  65. <version>0.4.16</version>
  66. </dependency>
  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-validation</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-aop</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.google.guava</groupId>
  81. <artifactId>guava</artifactId>
  82. <version>31.0.1-jre</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>fastjson</artifactId>
  87. <version>1.2.79</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.github.binarywang</groupId>
  91. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  92. <version>4.5.0</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>com.github.binarywang</groupId>
  96. <artifactId>weixin-java-miniapp</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.github.binarywang</groupId>
  102. <artifactId>weixin-java-miniapp</artifactId>
  103. <version>4.5.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.github.binarywang</groupId>
  107. <artifactId>weixin-java-mp</artifactId>
  108. <version>4.6.0</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-configuration-processor</artifactId>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>mysql</groupId>
  117. <artifactId>mysql-connector-java</artifactId>
  118. <scope>runtime</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.projectlombok</groupId>
  122. <artifactId>lombok</artifactId>
  123. <optional>true</optional>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-test</artifactId>
  128. <scope>test</scope>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <finalName>${project.artifactId}</finalName>
  133. <resources>
  134. <resource>
  135. <directory>src/main/java</directory>
  136. <filtering>false</filtering>
  137. </resource>
  138. <resource>
  139. <directory>src/main/resources</directory>
  140. <filtering>true</filtering>
  141. <includes>
  142. <include>**</include>
  143. </includes>
  144. </resource>
  145. </resources>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-resources-plugin</artifactId>
  150. <version>3.2.0</version>
  151. <configuration>
  152. <encoding>UTF-8</encoding>
  153. <nonFilteredFileExtensions>
  154. <nonFilteredFileExtension>pem</nonFilteredFileExtension>
  155. <nonFilteredFileExtension>p12</nonFilteredFileExtension>
  156. </nonFilteredFileExtensions>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. <version>2.5.8</version>
  163. <executions>
  164. <execution>
  165. <goals>
  166. <goal>repackage</goal>
  167. </goals>
  168. </execution>
  169. </executions>
  170. <configuration>
  171. <embeddedLaunchScriptProperties>
  172. <mode>service</mode>
  173. </embeddedLaunchScriptProperties>
  174. <fork>true</fork>
  175. <executable>true</executable>
  176. </configuration>
  177. </plugin>
  178. </plugins>
  179. </build>
  180. <repositories>
  181. <repository>
  182. <id>aliyunmaven</id>
  183. <url>https://maven.aliyun.com/repository/public/</url>
  184. <releases>
  185. <enabled>true</enabled>
  186. </releases>
  187. </repository>
  188. </repositories>
  189. </project>