Revert to snapshots

This commit is contained in:
Dave Syer
2016-02-05 12:44:25 +00:00
parent 032c96d86e
commit ec0dcfd1bd
8 changed files with 14 additions and 14 deletions

View File

@@ -29,7 +29,7 @@ and install the Spring Cloud plugin:
``` ```
$ mvn install $ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.M5 $ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.BUILD-SNAPSHOT
``` ```
IMPORTANT: **Prerequisites:** to use the encryption and decryption features IMPORTANT: **Prerequisites:** to use the encryption and decryption features

View File

@@ -37,5 +37,5 @@ and finally install the Spring Cloud plugin:
``` ```
$ mvn install $ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.0.0.M5 $ spring install org.springframework.cloud:spring-cloud-cli:1.0.0.BUILD-SNAPSHOT
``` ```

View File

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

View File

@@ -17,7 +17,7 @@ and install the Spring Cloud plugin:
``` ```
$ mvn install $ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.M5 $ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.BUILD-SNAPSHOT
``` ```
IMPORTANT: **Prerequisites:** to use the encryption and decryption features IMPORTANT: **Prerequisites:** to use the encryption and decryption features

View File

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

View File

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

View File

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

View File

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