Update to SNAPSHOT

This commit is contained in:
Spencer Gibb
2016-11-01 16:06:04 -06:00
parent f240db174f
commit c66f05dd3a
20 changed files with 27 additions and 68 deletions

View File

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

View File

@@ -1,41 +0,0 @@
// Do not edit this file (e.g. go instead to src/main/asciidoc)
Spring Boot command line features for
https://github.com/spring-cloud[Spring Cloud].
== Installation
To install, make
sure you have
https://github.com/spring-projects/spring-boot[Spring Boot CLI]
(1.1.x with x>=5):
$ spring version
Spring CLI v1.3.3.RELEASE
E.g. for GVM users
```
$ 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):
```
$ 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.3.3.RELEASE/lib
```
and finally install the Spring Cloud plugin:
```
$ mvn install
$ spring install org.springframework.cloud:spring-cloud-cli:1.1.0.RC1
```

View File

@@ -6,7 +6,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.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Cloud Cli Docs</name> <name>Spring Cloud Cli Docs</name>

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.2.1.RELEASE $ spring install org.springframework.cloud:spring-cloud-cli:1.2.3.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.2.2.RELEASE</version> <version>1.2.3.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.2.1.RELEASE</version> <version>1.2.2.BUILD-SNAPSHOT</version>
<relativePath/> <relativePath/>
</parent> </parent>
<packaging>pom</packaging> <packaging>pom</packaging>
@@ -24,7 +24,7 @@
<bintray.package>cli</bintray.package> <bintray.package>cli</bintray.package>
<docs.main>spring-cloud-cli</docs.main> <docs.main>spring-cloud-cli</docs.main>
<main.basedir>${basedir}/..</main.basedir> <main.basedir>${basedir}/..</main.basedir>
<spring-boot.version>1.4.1.RELEASE</spring-boot.version> <spring-boot.version>1.4.2.BUILD-SNAPSHOT</spring-boot.version>
</properties> </properties>
<modules> <modules>
<module>spring-cloud-launcher</module> <module>spring-cloud-launcher</module>
@@ -111,7 +111,7 @@
<dependency> <dependency>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId> <artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR2</version> <version>Camden.BUILD-SNAPSHOT</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>

View File

@@ -12,7 +12,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.2.2.RELEASE</version> <version>1.2.3.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.2.2.RELEASE</version> <version>1.2.3.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.2.2.RELEASE</version> <version>1.2.3.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 = "Camden.SR2"; private static final String SPRING_CLOUD_VERSION = "Camden.BUILD-SNAPSHOT";
@Override @Override
protected String getBomModule() { protected String getBomModule() {

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>spring-cloud-launcher</name> <name>spring-cloud-launcher</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.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<modules> <modules>

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -52,7 +52,7 @@ public class LauncherCommand extends OptionParsingCommand {
public static final Log log = LogFactory.getLog(LauncherCommand.class); public static final Log log = LogFactory.getLog(LauncherCommand.class);
private static final String DEFAULT_VERSION = "1.2.1.RELEASE"; private static final String DEFAULT_VERSION = "1.2.3.BUILD-SNAPSHOT";
private static final Collection<HelpExample> EXAMPLES = new ArrayList<>(); private static final Collection<HelpExample> EXAMPLES = new ArrayList<>();

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -13,11 +13,11 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>
<spring-cloud-dataflow.version>1.0.1.RELEASE</spring-cloud-dataflow.version> <spring-cloud-dataflow.version>1.0.2.BUILD-SNAPSHOT</spring-cloud-dataflow.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>

View File

@@ -13,11 +13,11 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>
<spring-cloud-deployer.version>1.0.3.RELEASE</spring-cloud-deployer.version> <spring-cloud-deployer.version>1.0.4.BUILD-SNAPSHOT</spring-cloud-deployer.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>

View File

@@ -39,7 +39,7 @@ public class DeployerThread extends Thread {
private static final Logger logger = LoggerFactory.getLogger(DeployerThread.class); private static final Logger logger = LoggerFactory.getLogger(DeployerThread.class);
private static final String DEFAULT_VERSION = "1.2.1.RELEASE"; private static final String DEFAULT_VERSION = "1.2.3.BUILD-SNAPSHOT";
private String[] args; private String[] args;

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<properties> <properties>

View File

@@ -17,7 +17,7 @@
<parent> <parent>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-launcher</artifactId> <artifactId>spring-cloud-launcher</artifactId>
<version>1.2.2.RELEASE</version> <version>1.2.3.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>