diff --git a/README.md b/README.md index 3ad67752..11d304db 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,13 @@ Technologies * Java * Python +Building and releases +===================== +* Latest releases can be found in [github releases] (https://github.com/museumvictoria/nodel/releases) +* To build from scratch, clone repository and use [Gradle] (http://www.gradle.org/): + * `gradle :nodel-jyhost-java:build` + * Check `nodel-jyhost-java\build\distributions\standalone` directory + Licenses ======== * Platform - [Mozilla Public License, version 2.0](http://www.mozilla.org/MPL/2.0) diff --git a/nodel-jyhost-java/build.gradle b/nodel-jyhost-java/build.gradle index 5feb3ad9..f66dd035 100644 --- a/nodel-jyhost-java/build.gradle +++ b/nodel-jyhost-java/build.gradle @@ -7,7 +7,7 @@ repositories { mavenCentral() } -version = '2.0.5' +version = '2.0.5-rc1' mainClassName = "org.nodel.jyhost.Launch" @@ -26,7 +26,8 @@ task fatJar(type: Jar) { 'Implementation-Version': version, 'Main-Class': mainClassName } - baseName = project.name + '-all' + baseName = 'nodelhost' + destinationDir new File(buildDir, 'distributions/standalone') from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } with jar }