pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>studio</artifactId>
  7. <groupId>com.platform</groupId>
  8. <version>0.4.x</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>0.4.x</version>
  12. <artifactId>gateway</artifactId>
  13. <dependencies>
  14. <!--配置中心客户端 -->
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-config</artifactId>
  18. </dependency>
  19. <!--gateway 网关依赖,内置webflux 依赖 -->
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-gateway</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.github.xiaoymin</groupId>
  26. <artifactId>knife4j-spring-ui</artifactId>
  27. <version>${knife4j.version}</version>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-boot-starter</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger2</artifactId>
  38. <version>${springfox.version}</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>io.swagger</groupId>
  42. <artifactId>swagger-models</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>io.springfox</groupId>
  46. <artifactId>springfox-boot-starter</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.swagger</groupId>
  52. <artifactId>swagger-models</artifactId>
  53. <version>1.5.21</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-bean-validators</artifactId>
  58. <version>${springfox.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.platform</groupId>
  62. <artifactId>common-core</artifactId>
  63. <version>0.4.x</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>org.springframework.security</groupId>
  71. <artifactId>spring-security-web</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>