pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.jw</groupId>
  8. <artifactId>svr-lib-parent-pom</artifactId>
  9. <version>1.0.0</version>
  10. <relativePath>../svr-lib-parent-pom/pom.xml</relativePath>
  11. </parent>
  12. <groupId>com.yihu.jw</groupId>
  13. <artifactId>web-gateway</artifactId>
  14. <version>1.0.0</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.yihu.jw</groupId>
  18. <artifactId>common-exception</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.yihu.jw</groupId>
  22. <artifactId>common-request-mapping</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.yihu.jw</groupId>
  26. <artifactId>common-rest-model</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.yihu.base</groupId>
  30. <artifactId>common-swagger</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.yihu.base</groupId>
  34. <artifactId>common-security</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-tomcat</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-jdbc</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-aop</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-actuator</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-security</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-oauth2</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-eureka</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-starter-config</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.cloud</groupId>
  82. <artifactId>spring-cloud-starter-feign</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.cloud</groupId>
  86. <artifactId>spring-cloud-starter-hystrix</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-starter-zuul</artifactId>
  91. </dependency>
  92. <!--zipkin支持分布式追踪系统-->
  93. <dependency>
  94. <groupId>org.springframework.cloud</groupId>
  95. <artifactId>spring-cloud-starter-sleuth</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.cloud</groupId>
  99. <artifactId>spring-cloud-sleuth-zipkin</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.core</groupId>
  103. <artifactId>jackson-annotations</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.fasterxml.jackson.core</groupId>
  107. <artifactId>jackson-core</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.core</groupId>
  111. <artifactId>jackson-databind</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.json</groupId>
  115. <artifactId>json</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.security</groupId>
  119. <artifactId>spring-security-core</artifactId>
  120. <version>RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-collections</groupId>
  124. <artifactId>commons-collections</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-codec</groupId>
  128. <artifactId>commons-codec</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.yihu.base</groupId>
  132. <artifactId>common-security</artifactId>
  133. <version>1.0.0</version>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. <executions>
  142. <execution>
  143. <goals>
  144. <goal>repackage</goal>
  145. </goals>
  146. </execution>
  147. </executions>
  148. <configuration>
  149. <mainClass>com.yihu.jw.WebGateWayAppliaction</mainClass>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>