pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <packaging>war</packaging>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.yihu.jw</groupId>
  19. <artifactId>common-exception</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.yihu.jw</groupId>
  23. <artifactId>common-request-mapping</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.yihu.jw</groupId>
  27. <artifactId>common-rest-model</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yihu.base</groupId>
  31. <artifactId>common-swagger</artifactId>
  32. </dependency>
  33. <!--<dependency>-->
  34. <!--<groupId>com.yihu.base</groupId>-->
  35. <!--<artifactId>common-security</artifactId>-->
  36. <!--</dependency>-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-jpa</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-tomcat</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-jdbc</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-aop</artifactId>
  56. </dependency>
  57. <!-- <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-actuator</artifactId>
  60. </dependency>-->
  61. <!--<dependency>-->
  62. <!--<groupId>org.springframework.boot</groupId>-->
  63. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  64. <!--</dependency>-->
  65. <!-- <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. </dependency>-->
  69. <!-- <dependency>
  70. <groupId>org.springframework.cloud</groupId>
  71. <artifactId>spring-cloud-starter-oauth2</artifactId>
  72. </dependency>-->
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-starter-eureka</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-config</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-starter-feign</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.cloud</groupId>
  87. <artifactId>spring-cloud-starter-hystrix</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.cloud</groupId>
  91. <artifactId>spring-cloud-starter-zuul</artifactId>
  92. </dependency>
  93. <!--zipkin支持分布式追踪系统-->
  94. <dependency>
  95. <groupId>org.springframework.cloud</groupId>
  96. <artifactId>spring-cloud-starter-sleuth</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.cloud</groupId>
  100. <artifactId>spring-cloud-sleuth-zipkin</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.fasterxml.jackson.core</groupId>
  104. <artifactId>jackson-annotations</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.fasterxml.jackson.core</groupId>
  108. <artifactId>jackson-core</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.fasterxml.jackson.core</groupId>
  112. <artifactId>jackson-databind</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.json</groupId>
  116. <artifactId>json</artifactId>
  117. </dependency>
  118. <!-- <dependency>
  119. <groupId>org.springframework.security</groupId>
  120. <artifactId>spring-security-core</artifactId>
  121. <version>RELEASE</version>
  122. </dependency>-->
  123. <dependency>
  124. <groupId>commons-collections</groupId>
  125. <artifactId>commons-collections</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-codec</groupId>
  129. <artifactId>commons-codec</artifactId>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <executions>
  138. <execution>
  139. <goals>
  140. <goal>repackage</goal>
  141. </goals>
  142. </execution>
  143. </executions>
  144. <configuration>
  145. <mainClass>com.yihu.jw.WebGateWayAppliaction</mainClass>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>