pom.xml 891 B

123456789101112131415161718192021222324252627282930
  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>msgw-demo</artifactId>
  7. <groupId>com.tencent.tsf</groupId>
  8. <version>1.23.0-Greenwich-RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>msgw-zuul1</artifactId>
  12. <dependencies>
  13. <!--TSF gateway 依赖-->
  14. <dependency>
  15. <groupId>com.tencent.tsf</groupId>
  16. <artifactId>spring-cloud-tsf-msgw-zuul</artifactId>
  17. <version>${tsf.version}</version>
  18. </dependency>
  19. <!--TSF 其它 SDK 依赖-->
  20. <dependency>
  21. <groupId>com.tencent.tsf</groupId>
  22. <artifactId>spring-cloud-tsf-starter</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>