pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.mrbird</groupId>
  7. <artifactId>febs-cloud</artifactId>
  8. <version>1.6-RELEASE</version>
  9. <relativePath>../febs-cloud/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-gateway</artifactId>
  12. <version>1.6-RELEASE</version>
  13. <name>FEBS-Gateway</name>
  14. <description>FEBS-Gateway服务网关模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cc.mrbird</groupId>
  18. <artifactId>febs-common</artifactId>
  19. <version>1.6-RELEASE</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </exclusion>
  25. <exclusion>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-oauth2</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-security</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>net.logstash.logback</groupId>
  41. <artifactId>logstash-logback-encoder</artifactId>
  42. <version>6.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-gateway</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-actuator</artifactId>
  55. </dependency>
  56. <!-- 网关增强依赖 -->
  57. <dependency>
  58. <groupId>org.apache.commons</groupId>
  59. <artifactId>commons-pool2</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-webflux</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-security</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.jsonwebtoken</groupId>
  75. <artifactId>jjwt</artifactId>
  76. <version>0.9.1</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>