pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>qiyewechat_parent</artifactId>
  6. <groupId>com.github.binarywang</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <relativePath>../qiyewechat_parent/pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.liangjian11</groupId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <artifactId>mpwechatApp</artifactId>
  14. <packaging>jar</packaging>
  15. <name>mpwechatApp</name>
  16. <description>基于 WxJava 和 Spring Boot 实现的微信公众号后端开发演示项目</description>
  17. <properties>
  18. <weixin-java-mp.version>3.7.0</weixin-java-mp.version>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.build.locales>zh_CN</project.build.locales>
  24. <docker.image.prefix>wechat-mp</docker.image.prefix>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.github.pagehelper</groupId>
  29. <artifactId>pagehelper</artifactId>
  30. <version>5.1.10</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>com.fasterxml.jackson.core</groupId>
  42. <artifactId>jackson-databind</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.binarywang</groupId>
  52. <artifactId>weixin-java-mp</artifactId>
  53. <version>${weixin-java-mp.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.binarywang</groupId>
  57. <artifactId>weixin-java-open</artifactId>
  58. <version>${weixin-java-mp.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.18.12</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <!-- Testing Dependencies -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>redis.clients</groupId>
  74. <artifactId>jedis</artifactId>
  75. <version>2.9.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-configuration-processor</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.testng</groupId>
  84. <artifactId>testng</artifactId>
  85. <version>6.14.3</version>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.rest-assured</groupId>
  90. <artifactId>rest-assured</artifactId>
  91. <version>3.1.1</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <!-- Mybatis-plus -->
  95. <dependency>
  96. <groupId>com.baomidou</groupId>
  97. <artifactId>mybatis-plus-boot-starter</artifactId>
  98. <version>3.0.5</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>druid-spring-boot-starter</artifactId>
  103. <version>1.1.10</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.baomidou</groupId>
  107. <artifactId>mybatis-plus-support</artifactId>
  108. <version>2.1.9</version>
  109. </dependency>
  110. <!-- 数据库连接驱动 -->
  111. <!--<dependency>-->
  112. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  113. <!--<artifactId>mssql-jdbc</artifactId>-->
  114. <!--<version>7.4.1.jre8</version>-->
  115. <!--</dependency>-->
  116. <dependency>
  117. <groupId>com.microsoft.sqlserver</groupId>
  118. <artifactId>mssql-jdbc</artifactId>
  119. <version>6.4.0.jre8</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.junit.jupiter</groupId>
  123. <artifactId>junit-jupiter</artifactId>
  124. <version>RELEASE</version>
  125. <scope>compile</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-beanutils</groupId>
  129. <artifactId>commons-beanutils</artifactId>
  130. <version>1.9.4</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.swagger</groupId>
  134. <artifactId>swagger-annotations</artifactId>
  135. <version>1.5.14</version>
  136. </dependency>
  137. <!-- 导出数据Excel -->
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi</artifactId>
  141. <version>3.13</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi-ooxml</artifactId>
  146. <version>3.13</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-io</groupId>
  150. <artifactId>commons-io</artifactId>
  151. <version>2.5</version>
  152. </dependency>
  153. <!-- okHttp -->
  154. <dependency>
  155. <groupId>com.squareup.okhttp3</groupId>
  156. <artifactId>okhttp</artifactId>
  157. <version>4.0.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>tk.mybatis</groupId>
  161. <artifactId>mapper-spring-boot-starter</artifactId>
  162. <version>2.0.4</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.springframework.data</groupId>
  166. <artifactId>spring-data-commons</artifactId>
  167. <version>2.2.0.RELEASE</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.alibaba</groupId>
  171. <artifactId>fastjson</artifactId>
  172. <version>1.2.68</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.github.tobato</groupId>
  176. <artifactId>fastdfs-client</artifactId>
  177. <version>1.26.2</version>
  178. </dependency>
  179. <!-- quartz -->
  180. <dependency>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-starter-quartz</artifactId>
  183. </dependency>
  184. <dependency>
  185. <groupId>mysql</groupId>
  186. <artifactId>mysql-connector-java</artifactId>
  187. <scope>runtime</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.mchange</groupId>
  191. <artifactId>c3p0</artifactId>
  192. <version>0.9.5.5</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.springframework.boot</groupId>
  196. <artifactId>spring-boot-starter-amqp</artifactId>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.rabbitmq</groupId>
  200. <artifactId>amqp-client</artifactId>
  201. <version>3.6.5</version>
  202. </dependency>
  203. <!-- pgsql -->
  204. <dependency>
  205. <groupId>org.postgresql</groupId>
  206. <artifactId>postgresql</artifactId>
  207. <version>42.2.14</version>
  208. </dependency>
  209. <!--JWT-->
  210. <dependency>
  211. <groupId>com.auth0</groupId>
  212. <artifactId>java-jwt</artifactId>
  213. <version>3.10.3</version>
  214. </dependency>
  215. <!--<dependency>
  216. <groupId>io.jsonwebtoken</groupId>
  217. <artifactId>jjwt</artifactId>
  218. <version>0.9.1</version>
  219. </dependency>-->
  220. </dependencies>
  221. <build>
  222. <plugins>
  223. <plugin>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-maven-plugin</artifactId>
  226. </plugin>
  227. <plugin>
  228. <groupId>com.spotify</groupId>
  229. <artifactId>docker-maven-plugin</artifactId>
  230. <version>1.0.0</version>
  231. <configuration>
  232. <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
  233. <dockerDirectory>src/main/docker</dockerDirectory>
  234. <resources>
  235. <resource>
  236. <targetPath>/</targetPath>
  237. <directory>${project.build.directory}</directory>
  238. <include>${project.build.finalName}.jar</include>
  239. </resource>
  240. </resources>
  241. </configuration>
  242. </plugin>
  243. </plugins>
  244. </build>
  245. </project>