pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>cc.mrbird</groupId>
  53. <artifactId>febs-common-logging-starter</artifactId>
  54. <version>${febs-cloud.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.logstash.logback</groupId>
  58. <artifactId>logstash-logback-encoder</artifactId>
  59. <version>${logstash-logback-encoder.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-gateway</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-actuator</artifactId>
  72. </dependency>
  73. <!-- 网关增强依赖 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-webflux</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-security</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.jsonwebtoken</groupId>
  88. <artifactId>jjwt</artifactId>
  89. <version>${jjwt.version}</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>