pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.ym</groupId>
  8. <artifactId>mec-gateway</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>mec-gateway-web</artifactId>
  12. <name>mec-gateway-web</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!--api网关 -->
  19. <!-- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId>
  20. </dependency> -->
  21. <!--redis限流 -->
  22. <!-- <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  23. </dependency> -->
  24. <dependency>
  25. <groupId>com.plumelog</groupId>
  26. <artifactId>plumelog-logback</artifactId>
  27. <version>3.5.3</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
  40. </dependency>
  41. <!-- swagger-spring-boot -->
  42. <dependency>
  43. <groupId>com.spring4all</groupId>
  44. <artifactId>swagger-spring-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.xiaoymin</groupId>
  48. <artifactId>swagger-bootstrap-ui</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>de.codecentric</groupId>
  52. <artifactId>spring-boot-admin-starter-client</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-security</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. </plugin>
  65. <plugin>
  66. <groupId>com.spotify</groupId>
  67. <artifactId>docker-maven-plugin</artifactId>
  68. <version>1.2.2</version>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>