web123456

SpringBoot/SpringCloud Initial 3 (Registration Center)

  • <?xml version="1.0" encoding="UTF-8"?>
  • <project xmlns="/POM/4.0.0" xmlns:xsi="http:///2001/XMLSchema-instance"
  • xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.">
  • <modelVersion>4.0.0</modelVersion>
  • <parent>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-parent</artifactId>
  • <version>2.6.1</version>
  • <relativePath/> <!-- lookup parent from repository -->
  • </parent>
  • <groupId></groupId>
  • <artifactId>FirstSpringCloudApps</artifactId>
  • <version>0.0.1-SNAPSHOT</version>
  • <name>FirstSpringCloudApps</name>
  • <description>FirstSpringCloudApps</description>
  • <properties>
  • <>1.8</>
  • <>2021.0.0</>
  • </properties>
  • <dependencies>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-test</artifactId>
  • <scope>test</scope>
  • </dependency>
  • </dependencies>
  • <dependencyManagement>
  • <dependencies>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-cloud-dependencies</artifactId>
  • <version>${}</version>
  • <type>pom</type>
  • <scope>import</scope>
  • </dependency>
  • </dependencies>
  • </dependencyManagement>
  • <build>
  • <plugins>
  • <plugin>
  • <groupId></groupId>
  • <artifactId>spring-boot-maven-plugin</artifactId>
  • </plugin>
  • </plugins>
  • </build>
  • </project>