pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <!-- WxJava公众号 -->
  22. <dependency>
  23. <groupId>com.github.binarywang</groupId>
  24. <artifactId>weixin-java-mp</artifactId>
  25. <version>3.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.binarywang</groupId>
  29. <artifactId>weixin-java-common</artifactId>
  30. <version>3.3.0</version>
  31. </dependency>
  32. <!-- BouncyCastle是一个开源的加解密解决方案,主页在http://www.bouncycastle.org/-->
  33. <dependency>
  34. <groupId>org.bouncycastle</groupId>
  35. <artifactId>bcprov-jdk15on</artifactId>
  36. <version>1.56</version>
  37. </dependency>
  38. <!--lombok-->
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <!--net sf包 json 依赖-->
  45. <dependency>
  46. <groupId>net.sf.json-lib</groupId>
  47. <artifactId>json-lib</artifactId>
  48. <version>2.4</version>
  49. <classifier>jdk15</classifier>
  50. </dependency>
  51. <!-- 极光推送依赖 -->
  52. <dependency>
  53. <groupId>cn.jpush.api</groupId>
  54. <artifactId>jpush-client</artifactId>
  55. <version>3.3.10</version>
  56. </dependency>
  57. <!-- Spring Boot Reids 依赖 -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. <version>2.1.4</version>
  70. </dependency>
  71. <!-- Mysql驱动包 -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>8.0.22</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-tomcat</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <!-- Gson json 格式化 -->
  88. <dependency>
  89. <groupId>com.google.code.gson</groupId>
  90. <artifactId>gson</artifactId>
  91. <version>2.8.5</version>
  92. </dependency>
  93. <!--阿里数据库连接池 -->
  94. <dependency>
  95. <groupId>com.alibaba</groupId>
  96. <artifactId>druid-spring-boot-starter</artifactId>
  97. <version>1.2.1</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.alibaba</groupId>
  101. <artifactId>fastjson</artifactId>
  102. <version>1.2.37</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.httpcomponents</groupId>
  106. <artifactId>httpcore</artifactId>
  107. <version>4.4.6</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpclient</artifactId>
  112. <version>4.5.5</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-lang3</artifactId>
  117. <version>3.11</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. </plugin>
  126. <plugin>
  127. <!--Mybatis-generator插件,用于自动生成Mapper和POJO-->
  128. <groupId>org.mybatis.generator</groupId>
  129. <artifactId>mybatis-generator-maven-plugin</artifactId>
  130. <version>1.3.7</version>
  131. <configuration>
  132. <!--配置文件的位置-->
  133. <configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>
  134. <verbose>true</verbose>
  135. <overwrite>true</overwrite>
  136. </configuration>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-surefire-plugin</artifactId>
  141. <version>2.22.2</version>
  142. <configuration>
  143. <skipTests>true</skipTests>
  144. </configuration>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. <repositories>
  149. <repository>
  150. <id>public</id>
  151. <name>aliyun nexus</name>
  152. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  153. <releases>
  154. <enabled>true</enabled>
  155. </releases>
  156. </repository>
  157. </repositories>
  158. <pluginRepositories>
  159. <pluginRepository>
  160. <id>public</id>
  161. <name>aliyun nexus</name>
  162. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  163. <releases>
  164. <enabled>true</enabled>
  165. </releases>
  166. <snapshots>
  167. <enabled>false</enabled>
  168. </snapshots>
  169. </pluginRepository>
  170. </pluginRepositories>
  171. </project>