spring 基础框架建设

pom.xml 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>spring-cloud</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>config-client</module>
  11. <module>config-server</module>
  12. <module>eureka-client1</module>
  13. <module>eureka-client2</module>
  14. <module>eureka-sever</module>
  15. <module>ribbon-consumer</module>
  16. </modules>
  17. <name>spring-cloud</name>
  18. <description>spring-cloud project for Spring Boot</description>
  19. <parent>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-parent</artifactId>
  22. <version>2.0.4.RELEASE</version>
  23. <relativePath/> <!-- lookup parent from repository -->
  24. </parent>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <java.version>1.8</java.version>
  29. </properties>
  30. </project>