pom.xml 6.8 KB

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