pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. <exclusions>
  41. <exclusion>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-tomcat</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>javax.servlet-api</artifactId>
  50. <version>3.1.0</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.tomcat</groupId>
  55. <artifactId>tomcat-servlet-api</artifactId>
  56. <version>8.5.28</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-jpa</artifactId>
  62. </dependency>
  63. <!-- <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-tomcat</artifactId>
  66. </dependency>-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-jdbc</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-aop</artifactId>
  74. </dependency>
  75. <!-- <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-actuator</artifactId>
  78. </dependency>-->
  79. <!--<dependency>-->
  80. <!--<groupId>org.springframework.boot</groupId>-->
  81. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  82. <!--</dependency>-->
  83. <!-- <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-data-redis</artifactId>
  86. </dependency>-->
  87. <!-- <dependency>
  88. <groupId>org.springframework.cloud</groupId>
  89. <artifactId>spring-cloud-starter-oauth2</artifactId>
  90. </dependency>-->
  91. <dependency>
  92. <groupId>org.springframework.cloud</groupId>
  93. <artifactId>spring-cloud-starter-eureka</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.cloud</groupId>
  97. <artifactId>spring-cloud-starter-config</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.cloud</groupId>
  101. <artifactId>spring-cloud-starter-feign</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.cloud</groupId>
  105. <artifactId>spring-cloud-starter-hystrix</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.cloud</groupId>
  109. <artifactId>spring-cloud-starter-zuul</artifactId>
  110. </dependency>
  111. <!--zipkin支持分布式追踪系统-->
  112. <dependency>
  113. <groupId>org.springframework.cloud</groupId>
  114. <artifactId>spring-cloud-starter-sleuth</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.cloud</groupId>
  118. <artifactId>spring-cloud-sleuth-zipkin</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.fasterxml.jackson.core</groupId>
  122. <artifactId>jackson-annotations</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.fasterxml.jackson.core</groupId>
  126. <artifactId>jackson-core</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.fasterxml.jackson.core</groupId>
  130. <artifactId>jackson-databind</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.json</groupId>
  134. <artifactId>json</artifactId>
  135. </dependency>
  136. <!-- <dependency>
  137. <groupId>org.springframework.security</groupId>
  138. <artifactId>spring-security-core</artifactId>
  139. <version>RELEASE</version>
  140. </dependency>-->
  141. <dependency>
  142. <groupId>commons-collections</groupId>
  143. <artifactId>commons-collections</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-codec</groupId>
  147. <artifactId>commons-codec</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.sun.jna</groupId>
  151. <artifactId>jna</artifactId>
  152. <version>3.0.9</version>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <finalName>webgate-way</finalName>
  157. <plugins>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin </artifactId>
  161. <configuration>
  162. <mainClass>com.yihu.jw.WebGateWayAppliaction</mainClass>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <artifactId>maven-compiler-plugin</artifactId>
  167. <configuration>
  168. <source>1.8</source>
  169. <target>1.8</target>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>