diff --git a/README.md b/README.md index 0e2cfec..b16d8b5 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,12 @@ A simple java terminal emulator running on top of [aesh](https://github.com/aesh Download: --------- -[mterm-0.57.zip](https://github.com/aeshell/mterm/releases/download/0.57/mterm-0.57.zip) +[mterm-0.61.zip](https://github.com/aeshell/mterm/releases/download/0.61/mterm-0.61.zip) ```shell -$ unzip mterm-0.57.zip -$ cd mterm-0.57/bin +$ unzip mterm-0.61.zip +$ cd mterm-0.61/bin $ ./mterm ``` diff --git a/build.gradle b/build.gradle index 7743ab3..f19f216 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'application' apply plugin: 'codenarc' group = 'org.jboss.aesh' -version = '0.61-SNAPSHOT' +version = '0.61' mainClassName = 'org.jboss.aesh.mterm.Mterm' @@ -52,11 +52,7 @@ test { dependencies { compile group: 'org.jboss.aesh', name: 'aesh', version: version compile group: 'org.jboss.aesh', name: 'aesh-extensions', version: version - compile 'org.codehaus.groovy:groovy-all:2.4.3' + compile 'org.codehaus.groovy:groovy:2.4.3' testCompile group: 'junit', name: 'junit', version: '4.+' testCompile group: 'org.easytesting', name: 'fest-swing', version: '1.2.1' } - -task wrapper(type: Wrapper) { - gradleVersion = '2.4' -}