pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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. <groupId>com.mtgg</groupId>
  6. <artifactId>BootMTGG</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>BootMTGG</name>
  10. <description>Demo project for BootMTGG</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.6.RELEASE</version>
  15. <relativePath />
  16. </parent>
  17. <properties>
  18. <weixin-java-mp.version>2.8.0</weixin-java-mp.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <!-- 移除嵌入式tomcat插件 -->
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-tomcat</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.servlet</groupId>
  34. <artifactId>javax.servlet-api</artifactId>
  35. <version>3.1.0</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. <version>1.3.1</version>
  42. </dependency>
  43. <!--单元测试-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <!--spring-boot热部署-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-devtools</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-logging</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-configuration-processor</artifactId>
  72. <optional>true</optional>
  73. </dependency>
  74. <!-- log4j -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-log4j</artifactId>
  78. <version>1.3.8.RELEASE</version>
  79. </dependency>
  80. <!--log-->
  81. <dependency>
  82. <groupId>log4j</groupId>
  83. <artifactId>log4j</artifactId>
  84. <version>1.2.17</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.slf4j</groupId>
  88. <artifactId>slf4j-api</artifactId>
  89. <version>1.7.5</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.slf4j</groupId>
  93. <artifactId>slf4j-log4j12</artifactId>
  94. <version>1.7.5</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.slf4j</groupId>
  98. <artifactId>jcl-over-slf4j</artifactId>
  99. <version>1.7.5</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <version>1.16.8</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.jfinal</groupId>
  108. <artifactId>enjoy</artifactId>
  109. <version>3.2</version>
  110. </dependency>
  111. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. <version>2.6.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.github.binarywang</groupId>
  119. <artifactId>weixin-java-mp</artifactId>
  120. <version>2.8.0</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.jfinal</groupId>
  124. <artifactId>jfinal</artifactId>
  125. <version>3.2</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.jfinal</groupId>
  129. <artifactId>jfinal-weixin</artifactId>
  130. <version>1.9</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.github.javen205</groupId>
  134. <artifactId>IJPay</artifactId>
  135. <version>1.0</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.alibaba</groupId>
  139. <artifactId>fastjson</artifactId>
  140. <version>1.2.37</version>
  141. </dependency>
  142. <!--http-->
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpmime</artifactId>
  146. <version>4.3.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>dom4j</groupId>
  150. <artifactId>dom4j</artifactId>
  151. <version>1.6.1</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.httpcomponents</groupId>
  155. <artifactId>httpclient</artifactId>
  156. <version>4.5.2</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.commons</groupId>
  160. <artifactId>commons-lang3</artifactId>
  161. <version>3.7</version>
  162. </dependency>
  163. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  164. <dependency>
  165. <groupId>commons-codec</groupId>
  166. <artifactId>commons-codec</artifactId>
  167. <version>1.10</version>
  168. </dependency>
  169. <!-- okhttp2 -->
  170. <dependency>
  171. <groupId>com.squareup.okhttp</groupId>
  172. <artifactId>okhttp</artifactId>
  173. <version>2.7.5</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.squareup.okhttp3</groupId>
  177. <artifactId>okhttp</artifactId>
  178. <version>3.8.0</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.squareup.okio</groupId>
  182. <artifactId>okio</artifactId>
  183. <version>1.11.0</version>
  184. </dependency>
  185. <!-- poi start -->
  186. <dependency>
  187. <groupId>org.apache.poi</groupId>
  188. <artifactId>poi</artifactId>
  189. <version>3.16</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.poi</groupId>
  193. <artifactId>poi-ooxml-schemas</artifactId>
  194. <version>3.16</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.poi</groupId>
  198. <artifactId>poi-ooxml</artifactId>
  199. <version>3.16</version>
  200. </dependency>
  201. <!-- poi end -->
  202. <!-- https://mvnrepository.com/artifact/net.sf.jacob-project/jacob -->
  203. <dependency>
  204. <groupId>net.sf.jacob-project</groupId>
  205. <artifactId>jacob</artifactId>
  206. <version>1.14.3</version>
  207. </dependency>
  208. <!-- https://mvnrepository.com/artifact/com.baidu.aip/java-sdk -->
  209. <dependency>
  210. <groupId>com.baidu.aip</groupId>
  211. <artifactId>java-sdk</artifactId>
  212. <version>4.3.2</version>
  213. </dependency>
  214. </dependencies>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.springframework.boot</groupId>
  219. <artifactId>spring-boot-maven-plugin</artifactId>
  220. <configuration>
  221. <fork>true</fork>
  222. </configuration>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. </project>