pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. <packaging>pom</packaging>
  6. <modules>
  7. <module>4dkankan-open-gateway-base</module>
  8. <module>4dkankan-open-gateway-main</module>
  9. <module>4dkankan-open-gateway-auth</module>
  10. </modules>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.4.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <groupId>org.4dage</groupId>
  18. <artifactId>4dkankan-open-gateway-parent</artifactId>
  19. <version>1.0-SNAPSHOT</version>
  20. <description>四维看房开放api网关</description>
  21. <properties>
  22. <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
  23. <alibaba.version>0.9.0.RELEASE</alibaba.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-gateway</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>com.google.guava</groupId>
  32. <artifactId>guava</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter</artifactId>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-logging</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>ch.qos.logback</groupId>
  46. <artifactId>logback-classic</artifactId>
  47. </exclusion>
  48. <exclusion>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-core</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-log4j2</artifactId>
  57. </dependency>
  58. <!-- <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-logging</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>-->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>redis.clients</groupId>
  74. <artifactId>jedis</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  79. <version>${alibaba.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  84. <version>${alibaba.version}</version>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>com.google.guava</groupId>
  88. <artifactId>guava</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.cloud</groupId>
  94. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>com.google.guava</groupId>
  98. <artifactId>guava</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-test</artifactId>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>com.google.guava</groupId>
  108. <artifactId>guava</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-logging</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>ch.qos.logback</groupId>
  116. <artifactId>logback-classic</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>ch.qos.logback</groupId>
  120. <artifactId>logback-core</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. <scope>test</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.mybatis.spring.boot</groupId>
  127. <artifactId>mybatis-spring-boot-starter</artifactId>
  128. <version>2.1.1</version>
  129. <exclusions>
  130. <exclusion>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter</artifactId>
  133. </exclusion>
  134. </exclusions>
  135. </dependency>
  136. <dependency>
  137. <groupId>mysql</groupId>
  138. <artifactId>mysql-connector-java</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.baomidou</groupId>
  142. <artifactId>mybatis-plus-boot-starter</artifactId>
  143. <version>3.3.1.tmp</version>
  144. <exclusions>
  145. <exclusion>
  146. <groupId>org.mybatis</groupId>
  147. <artifactId>mybatis</artifactId>
  148. </exclusion>
  149. <exclusion>
  150. <groupId>org.mybatis</groupId>
  151. <artifactId>mybatis-spring</artifactId>
  152. </exclusion>
  153. </exclusions>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.baomidou</groupId>
  157. <artifactId>mybatis-plus-generator</artifactId>
  158. <version>3.3.1.tmp</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.velocity</groupId>
  162. <artifactId>velocity-engine-core</artifactId>
  163. <version>2.1</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.projectlombok</groupId>
  167. <artifactId>lombok</artifactId>
  168. </dependency>
  169. <!-- swagger-ui -->
  170. <dependency>
  171. <groupId>io.springfox</groupId>
  172. <artifactId>springfox-swagger2</artifactId>
  173. <version>2.8.0</version>
  174. <exclusions>
  175. <exclusion>
  176. <groupId>com.google.guava</groupId>
  177. <artifactId>guava</artifactId>
  178. </exclusion>
  179. </exclusions>
  180. </dependency>
  181. <dependency>
  182. <groupId>io.springfox</groupId>
  183. <artifactId>springfox-swagger-ui</artifactId>
  184. <version>2.8.0</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.ant</groupId>
  188. <artifactId>ant</artifactId>
  189. <version>1.8.2</version>
  190. </dependency>
  191. </dependencies>
  192. <dependencyManagement>
  193. <dependencies>
  194. <dependency>
  195. <groupId>org.springframework.cloud</groupId>
  196. <artifactId>spring-cloud-dependencies</artifactId>
  197. <version>${spring-cloud.version}</version>
  198. <type>pom</type>
  199. <scope>import</scope>
  200. </dependency>
  201. </dependencies>
  202. </dependencyManagement>
  203. <build>
  204. <plugins>
  205. <plugin>
  206. <groupId>org.springframework.boot</groupId>
  207. <artifactId>spring-boot-maven-plugin</artifactId>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. </project>