Bump for Brixton.RC1

This commit is contained in:
Dave Syer
2016-03-24 11:27:20 +00:00
parent 999cdbe9cb
commit c5a937146f
8 changed files with 19 additions and 19 deletions

View File

@@ -29,7 +29,7 @@ and install the Spring Cloud plugin:
```
$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.BUILD-SNAPSHOT
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RC1
```
IMPORTANT: **Prerequisites:** to use the encryption and decryption features
@@ -156,7 +156,7 @@ or you will encounter compile problems. It also needs a specific version of mave
enabled. Intellij 14.1+ requires some configuration to ensure these are setup properly.
1. Click Preferences, Plugins. *Ensure Lombok is installed*
2. Click New, Project from Existing Sources, choose your spring-cloud-sleuth directory
2. Click New, Project from Existing Sources, choose your spring-cloud project directory
3. Choose Maven, and select Environment Settings. *Ensure you are using Maven 3.3.3*
4. In the next screen, *Select the profile `spring`* click Next until Finish.
5. Click Preferences, "Build, Execution, Deployment", Compiler, Annotation Processors. *Click Enable Annotation Processing*

View File

@@ -12,13 +12,13 @@ https://github.com/spring-projects/spring-boot[Spring Boot CLI]
(1.1.x with x>=5):
$ spring version
Spring CLI v1.1.5.RELEASE
Spring CLI v1.3.3.RELEASE
E.g. for GVM users
```
$ gvm install springboot 1.1.5.RELEASE
$ gvm use springboot 1.1.5.RELEASE
$ gvm install springboot 1.3.3.RELEASE
$ gvm use springboot 1.3.3.RELEASE
```
then get the install command plugin (backported from Boot 1.2.0):
@@ -30,12 +30,12 @@ $ wget http://dl.bintray.com/dsyer/generic/install-0.0.1.jar
install it in the Spring Boot CLI, e.g. with GVM (MacOS users that rely on brew might have to find the `/lib` directory by scanning `brew info springboot`):
```
$ cp install-0.0.1.jar ~/.gvm/springboot/1.1.5.RELEASE/lib
$ cp install-0.0.1.jar ~/.gvm/springboot/1.3.3.RELEASE/lib
```
and finally install the Spring Cloud plugin:
```
$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.0.0.BUILD-SNAPSHOT
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RC1
```

View File

@@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cli-docs</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RC1</version>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RC1</version>
<relativePath/>
</parent>
<packaging>pom</packaging>

View File

@@ -17,7 +17,7 @@ and install the Spring Cloud plugin:
```
$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.BUILD-SNAPSHOT
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RC1
```
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.RC1</version>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RC1</version>
<relativePath/>
</parent>
<packaging>pom</packaging>
@@ -84,14 +84,14 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config</artifactId>
<version>1.1.0.BUILD-SNAPSHOT</version>
<version>1.1.0.RC1</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.RC1</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.RC1</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.RC1</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.RC1</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.RC1</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.BUILD-SNAPSHOT";
private static final String SPRING_CLOUD_VERSION = "Brixton.RC1";
@Override
protected String getBomModule() {