Skip to content

Commit

Permalink
Notified of Gradle use.
Browse files Browse the repository at this point in the history
  • Loading branch information
justparking committed Dec 23, 2014
1 parent adefd80 commit 5d48b98
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 3 additions & 2 deletions nodel-jyhost-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

version = '2.0.5'
version = '2.0.5-rc1'

mainClassName = "org.nodel.jyhost.Launch"

Expand All @@ -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
}
Expand Down

0 comments on commit 5d48b98

Please sign in to comment.