pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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>hsweb-examples</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-examples-cloud</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>hsweb-examples-cloud-gateway</module>
  15. <module>hsweb-examples-cloud-user-center</module>
  16. <module>hsweb-examples-cloud-service01</module>
  17. </modules>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-dependencies</artifactId>
  23. <version>Dalston.SR4</version>
  24. <type>pom</type>
  25. <scope>import</scope>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. </project>