pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.1-SNAPSHOT</version>
  9. <relativePath>../febs-cloud/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-gateway</artifactId>
  12. <version>1.1-SNAPSHOT</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.1-SNAPSHOT</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.boot</groupId>
  31. <artifactId>spring-boot-starter-data-redis</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-oauth2</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-security</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-gateway</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-actuator</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba.csp</groupId>
  57. <artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
  58. <version>1.6.3</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba.csp</groupId>
  62. <artifactId>sentinel-core</artifactId>
  63. <version>1.6.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba.csp</groupId>
  67. <artifactId>sentinel-parameter-flow-control</artifactId>
  68. <version>1.6.3</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>