Jabit/demo/build.gradle
Christian Basler 72d0fbe550 Version 0.1.0 bump
Updated Gradle file structure so the version and a few other things are only defined once
2015-06-18 21:26:08 +02:00

17 lines
387 B
Groovy

plugins {
id "us.kirchmeier.capsule" version "1.0-rc1"
}
task fatCapsule(type: FatCapsule) {
applicationClass 'ch.dissem.bitmessage.demo.Main'
}
dependencies {
compile project(':domain')
compile project(':networking')
compile project(':repositories')
compile 'org.slf4j:slf4j-simple:1.7.12'
compile 'args4j:args4j:2.32'
testCompile 'junit:junit:4.11'
}