bump version to dev
This commit is contained in:
18
README.md
18
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
|
||||
<!-- used for milestone/rc releases -->
|
||||
<repository>
|
||||
<id>spring-milestone</id>
|
||||
<name>Spring Maven RELEASE Repository</name>
|
||||
<url>http://repo.springframework.org/release</url>
|
||||
</repository>
|
||||
|
||||
<repository>
|
||||
<id>spring-milestone</id>
|
||||
<name>Spring Maven MILESTONE Repository</name>
|
||||
@@ -22,7 +28,7 @@ If you have ideas about how to improve or extend the scope, please feel free to
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-shell</artifactId>
|
||||
<version>1.0.0.M1</version>
|
||||
<version>1.0.0.RELEASE</version>
|
||||
</dependency>
|
||||
|
||||
<!-- used for nightly builds -->
|
||||
@@ -33,11 +39,10 @@ If you have ideas about how to improve or extend the scope, please feel free to
|
||||
<url>http://repo.springframework.org/libs-snapshot</url>
|
||||
</repository>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.shell</groupId>
|
||||
<artifactId>spring-shell</artifactId>
|
||||
<version>1.0.0.SNAPSHOT</version>
|
||||
<version>1.0.1.SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
~~~~~
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user