pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.palatform</groupId>
  12. <artifactId>yijia</artifactId>
  13. <version>1.0.1-SNAPSHOT</version>
  14. <packaging>war</packaging>
  15. <name>YijiaRestful</name>
  16. <description>YijiaRestful project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-annotations</artifactId>
  24. <version>2.9.0</version>
  25. </dependency>
  26. <!-- spring security 安全认证 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-security</artifactId>
  30. </dependency>
  31. <!-- redis 缓存操作 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-redis</artifactId>
  35. </dependency>
  36. <!-- WxJava公众号 -->
  37. <dependency>
  38. <groupId>com.github.binarywang</groupId>
  39. <artifactId>weixin-java-mp</artifactId>
  40. <version>3.3.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.binarywang</groupId>
  44. <artifactId>weixin-java-common</artifactId>
  45. <version>3.3.0</version>
  46. </dependency>
  47. <!-- BouncyCastle是一个开源的加解密解决方案,主页在http://www.bouncycastle.org/-->
  48. <dependency>
  49. <groupId>org.bouncycastle</groupId>
  50. <artifactId>bcprov-jdk15on</artifactId>
  51. <version>1.56</version>
  52. </dependency>
  53. <!--lombok-->
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <!--net sf包 json 依赖-->
  60. <dependency>
  61. <groupId>net.sf.json-lib</groupId>
  62. <artifactId>json-lib</artifactId>
  63. <version>2.4</version>
  64. <classifier>jdk15</classifier>
  65. </dependency>
  66. <!-- 极光推送依赖 -->
  67. <dependency>
  68. <groupId>cn.jpush.api</groupId>
  69. <artifactId>jpush-client</artifactId>
  70. <version>3.3.10</version>
  71. </dependency>
  72. <!-- Spring Boot Reids 依赖 -->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.mybatis.spring.boot</groupId>
  83. <artifactId>mybatis-spring-boot-starter</artifactId>
  84. <version>2.1.4</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>1.2.10</version>
  90. </dependency>
  91. <!-- Mysql驱动包 -->
  92. <dependency>
  93. <groupId>mysql</groupId>
  94. <artifactId>mysql-connector-java</artifactId>
  95. <version>8.0.22</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-tomcat</artifactId>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-test</artifactId>
  105. <scope>test</scope>
  106. </dependency>
  107. <!-- Gson json 格式化 -->
  108. <dependency>
  109. <groupId>com.google.code.gson</groupId>
  110. <artifactId>gson</artifactId>
  111. <version>2.8.5</version>
  112. </dependency>
  113. <!--阿里数据库连接池 -->
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>druid-spring-boot-starter</artifactId>
  117. <version>1.2.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>fastjson</artifactId>
  122. <version>1.2.54</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.alipay.sdk</groupId>
  126. <artifactId>alipay-sdk-java</artifactId>
  127. <version>3.3.4.ALL</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.fasterxml.jackson.core</groupId>
  131. <artifactId>jackson-databind</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.httpcomponents</groupId>
  135. <artifactId>httpcore</artifactId>
  136. <version>4.4.6</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.httpcomponents</groupId>
  140. <artifactId>httpclient</artifactId>
  141. <version>4.5.5</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.commons</groupId>
  145. <artifactId>commons-lang3</artifactId>
  146. <version>3.11</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. </plugin>
  160. <plugin>
  161. <!--Mybatis-generator插件,用于自动生成Mapper和POJO-->
  162. <groupId>org.mybatis.generator</groupId>
  163. <artifactId>mybatis-generator-maven-plugin</artifactId>
  164. <version>1.3.7</version>
  165. <configuration>
  166. <!--配置文件的位置-->
  167. <configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>
  168. <verbose>true</verbose>
  169. <overwrite>true</overwrite>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-surefire-plugin</artifactId>
  175. <version>2.22.2</version>
  176. <configuration>
  177. <skipTests>true</skipTests>
  178. </configuration>
  179. </plugin>
  180. </plugins>
  181. </build>
  182. <repositories>
  183. <repository>
  184. <id>public</id>
  185. <name>aliyun nexus</name>
  186. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  187. <releases>
  188. <enabled>true</enabled>
  189. </releases>
  190. </repository>
  191. </repositories>
  192. <pluginRepositories>
  193. <pluginRepository>
  194. <id>public</id>
  195. <name>aliyun nexus</name>
  196. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  197. <releases>
  198. <enabled>true</enabled>
  199. </releases>
  200. <snapshots>
  201. <enabled>false</enabled>
  202. </snapshots>
  203. </pluginRepository>
  204. </pluginRepositories>
  205. </project>