Update for 1.1.0.RELEASE

This commit is contained in:
Dave Syer
2016-05-11 10:04:34 +01:00
parent 4c9eb80238
commit 0bff1e41d4
6 changed files with 15 additions and 15 deletions

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-parent</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
</parent>
<packaging>pom</packaging>
<name>Spring Cloud Cli Docs</name>

View File

@@ -1,23 +1,23 @@
To install, make
sure you have
https://github.com/spring-projects/spring-boot[Spring Boot CLI]
(1.3.0 or better):
(1.3.5 or better):
$ spring version
Spring CLI v1.3.2.RELEASE
Spring CLI v1.3.5.RELEASE
E.g. for SDKMan users
```
$ sdk install springboot 1.3.2.RELEASE
$ sdk use springboot 1.3.2.RELEASE
$ sdk install springboot 1.3.5.RELEASE
$ sdk use springboot 1.3.5.RELEASE
```
and install the Spring Cloud plugin:
```
$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RC1
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RELEASE
```
IMPORTANT: **Prerequisites:** to use the encryption and decryption features

View File

@@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-parent</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>1.1.0.RELEASE</version>
<version>1.1.1.RELEASE</version>
<relativePath/>
</parent>
<packaging>pom</packaging>
@@ -95,14 +95,14 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-integration-tests</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
<packaging>jar</packaging>
<name>spring-cloud-cli-integration-tests</name>
@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-parent</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
</parent>
<dependencies>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
<packaging>jar</packaging>
<name>spring-cloud-cli</name>
@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-parent</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RELEASE</version>
</parent>
<dependencies>

View File

@@ -28,7 +28,7 @@ import org.springframework.boot.cli.compiler.GenericBomAstTransformation;
@GroovyASTTransformation(phase = CompilePhase.CONVERSION)
public class SpringCloudBomAstTransformation extends GenericBomAstTransformation {
private static final String SPRING_CLOUD_VERSION = "Brixton.RC2";
private static final String SPRING_CLOUD_VERSION = "Brixton.RELEASE";
@Override
protected String getBomModule() {