From 1e9cf615a6dec212f803dc54fb293da24d1059bd Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Tue, 2 Oct 2012 22:54:59 +0300 Subject: [PATCH] bump version to dev --- README.md | 18 +++++++++++------- gradle.properties | 26 +++++++++++++++++++------- 2 files changed, 30 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 996a6126..eb7a6946 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Spring Shell is an interactive shell that can be easily extended with commands using a Spring based programming model. The latest release is 1.0 M1 +Spring Shell is an interactive shell that can be easily extended with commands using a Spring based programming model. The latest release is 1.0.0.RELEASE # Useful links @@ -13,6 +13,12 @@ If you have ideas about how to improve or extend the scope, please feel free to ~~~~~ xml + + spring-milestone + Spring Maven RELEASE Repository + http://repo.springframework.org/release + + spring-milestone Spring Maven MILESTONE Repository @@ -22,7 +28,7 @@ If you have ideas about how to improve or extend the scope, please feel free to org.springframework.data spring-shell - 1.0.0.M1 + 1.0.0.RELEASE @@ -33,11 +39,10 @@ If you have ideas about how to improve or extend the scope, please feel free to http://repo.springframework.org/libs-snapshot - org.springframework.shell spring-shell - 1.0.0.SNAPSHOT + 1.0.1.SNAPSHOT ~~~~~ @@ -46,12 +51,11 @@ If you have ideas about how to improve or extend the scope, please feel free to ~~~~~ groovy repositories { - maven { url "http://repo.springsource.org/libs-milestone" } maven { url "http://repo.springsource.org/libs-snapshot" } } dependencies { - compile "org.springframework.shell:spring-shell:1.0.0.M1" + compile "org.springframework.shell:spring-shell:1.0.0.RELEASE" } ~~~~~ @@ -64,7 +68,7 @@ Spring Shell is built with Gradle. To build Spring Shell, run # Running Example cd samples/helloworld - ../../gradlew installApp + ./gradlew installApp cd build/install/helloworld/bin helloworld diff --git a/gradle.properties b/gradle.properties index 4ed66b55..c83dbe9c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,21 @@ -slf4jVersion=1.6.6 +## Dependecies Version + +# Logging +slf4jVersion = 1.6.6 + +# Common libraries +springVersion = 3.1.2.RELEASE +commonsioVersion = 2.3 +cglibVersion = 2.2.2 jlineVersion=1.0.S2-B -junitVersion=4.7 -springVersion=3.1.2.RELEASE -commonsioVersion=2.3 -version=1.0.0.RELEASE jansiVersion=1.8 -cglibVersion=2.2.2 -mockitoVersion=1.8.5 + + +# Testing +junitVersion = 4.7 +mockitoVersion = 1.8.5 + +# -------------------- +# Project wide version +# -------------------- +version=1.0.1.BUILD-SNAPSHOT \ No newline at end of file