pom.xml 762 B

1234567891011121314151617181920212223
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.tencent.tsf</groupId>
  6. <artifactId>tsf-demo</artifactId>
  7. <version>1.23.0-Greenwich-RELEASE</version>
  8. </parent>
  9. <artifactId>opensource-zuul-demo</artifactId>
  10. <dependencies>
  11. <!-- TSF 启动器 -->
  12. <dependency>
  13. <groupId>com.tencent.tsf</groupId>
  14. <artifactId>spring-cloud-tsf-starter</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
  19. </dependency>
  20. </dependencies>
  21. </project>