pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.4-RELEASE</version>
  9. <relativePath>../febs-cloud/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-gateway</artifactId>
  12. <version>1.4-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.4-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.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>net.logstash.logback</groupId>
  45. <artifactId>logstash-logback-encoder</artifactId>
  46. <version>6.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-starter-gateway</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.cloud</groupId>
  54. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-actuator</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba.csp</groupId>
  62. <artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>