pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>lift-cloud</artifactId>
  7. <groupId>cn.com.ty</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lift-zuul-server</artifactId>
  12. <dependencies>
  13. <!--启用zuul-->
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.com.xwy</groupId>
  20. <artifactId>xwy-spring-boot</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.session</groupId>
  24. <artifactId>spring-session-data-redis</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.com.xwy</groupId>
  28. <artifactId>xwy-cloud-dependencies</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.squareup.okhttp3</groupId>
  32. <artifactId>okhttp</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <!--hutool工具类 -->
  36. <dependency>
  37. <groupId>cn.hutool</groupId>
  38. <artifactId>hutool-all</artifactId>
  39. <version>5.0.6</version>
  40. </dependency>
  41. </dependencies>
  42. </project>