pom.xml 7.3 KB

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