pom.xml 3.9 KB

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