springboot corresponding springcloud version

Edgware corresponding version of the Boot the Spring for 1.5 .x 
from Finchley version of the Boot corresponding to the Spring 2.0 .x 
Greenwich version of the Boot corresponding to the Spring 2.1 .x

 

 

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.0.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
</parent>

 

<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-dependencies -->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>Greenwich.SR1</version>
    <type>pom</type>
</dependency>

 

Guess you like

Origin www.cnblogs.com/lshan/p/11140007.html