pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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>1.5.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.fengqi</groupId>
  12. <artifactId>wechat</artifactId>
  13. <version>0.0.1</version>
  14. <name>FqWechatService</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud-version>Dalston.SR3</spring-cloud-version>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-dependencies</artifactId>
  25. <version>${spring-cloud-version}</version>
  26. <type>pom</type>
  27. <scope>import</scope>
  28. </dependency>
  29. </dependencies>
  30. </dependencyManagement>
  31. <dependencies>
  32. <!--spring web-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <!--springboot 测试-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!--springboot监控-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-actuator</artifactId>
  47. </dependency>
  48. <!--lombok-->
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <!--&lt;!&ndash; Swagger &ndash;&gt;-->
  55. <!--<dependency>-->
  56. <!--<groupId>io.springfox</groupId>-->
  57. <!--<artifactId>springfox-swagger2</artifactId>-->
  58. <!--<version>2.9.2</version>-->
  59. <!--</dependency>-->
  60. <!--<dependency>-->
  61. <!--<groupId>io.springfox</groupId>-->
  62. <!--<artifactId>springfox-swagger-ui</artifactId>-->
  63. <!--<version>2.9.2</version>-->
  64. <!--</dependency>-->
  65. <!--hutool-->
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. <version>4.1.14</version>
  70. </dependency>
  71. <!--guava-->
  72. <dependency>
  73. <groupId>com.google.guava</groupId>
  74. <artifactId>guava</artifactId>
  75. <version>20.0</version>
  76. </dependency>
  77. <!-- redis依赖 -->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-data-redis</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>redis.clients</groupId>
  84. <artifactId>jedis</artifactId>
  85. </dependency>
  86. <!-- cache -->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-cache</artifactId>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  92. <dependency>
  93. <groupId>org.apache.httpcomponents</groupId>
  94. <artifactId>httpcore</artifactId>
  95. <version>4.4.10</version>
  96. </dependency>
  97. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  98. <dependency>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. <artifactId>httpclient</artifactId>
  101. <version>4.5.6</version>
  102. </dependency>
  103. <!--&lt;!&ndash;mysql&ndash;&gt;-->
  104. <!--<dependency>-->
  105. <!--<groupId>mysql</groupId>-->
  106. <!--<artifactId>mysql-connector-java</artifactId>-->
  107. <!--<scope>runtime</scope>-->
  108. <!--</dependency>-->
  109. <!--&lt;!&ndash; druid 官方 starter &ndash;&gt;-->
  110. <!--<dependency>-->
  111. <!--<groupId>com.alibaba</groupId>-->
  112. <!--<artifactId>druid-spring-boot-starter</artifactId>-->
  113. <!--<version>1.1.10</version>-->
  114. <!--</dependency>-->
  115. <!--&lt;!&ndash;mybatis&ndash;&gt;-->
  116. <!--<dependency>-->
  117. <!--<groupId>org.mybatis.spring.boot</groupId>-->
  118. <!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
  119. <!--<version>2.0.1</version>-->
  120. <!--</dependency>-->
  121. <!--&lt;!&ndash;mybatis puls&ndash;&gt;-->
  122. <!--<dependency>-->
  123. <!--<groupId>com.baomidou</groupId>-->
  124. <!--<artifactId>mybatis-plus-boot-starter</artifactId>-->
  125. <!--<version>3.1.2</version>-->
  126. <!--</dependency>-->
  127. <dependency>
  128. <groupId>org.springframework.cloud</groupId>
  129. <artifactId>spring-cloud-starter-feign</artifactId>
  130. </dependency>
  131. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-xml-provider -->
  132. <dependency>
  133. <groupId>com.fasterxml.jackson.dataformat</groupId>
  134. <artifactId>jackson-dataformat-xml</artifactId>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </project>