spring 基础框架建设

pom.xml 1.1KB

123456789101112131415161718192021222324252627282930313233
  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-server</module>
  11. <module>eureka-client1</module>
  12. <module>eureka-client2</module>
  13. <module>eureka-sever</module>
  14. </modules>
  15. <name>spring-cloud</name>
  16. <description>spring-cloud project for Spring Boot</description>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.0.4.RELEASE</version>
  21. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. </project>