2015-06-18 13:41:11 +02:00
|
|
|
plugins {
|
|
|
|
id "us.kirchmeier.capsule" version "1.0-rc1"
|
|
|
|
}
|
|
|
|
|
2015-06-21 08:58:49 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
|
|
|
name 'Jabit Demo'
|
|
|
|
artifactId = 'jabit-demo'
|
|
|
|
description 'An example Bitmessage client using Jabit.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 13:41:11 +02:00
|
|
|
task fatCapsule(type: FatCapsule) {
|
|
|
|
applicationClass 'ch.dissem.bitmessage.demo.Main'
|
|
|
|
}
|
2015-04-07 18:48:58 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':domain')
|
|
|
|
compile project(':networking')
|
2015-05-19 19:16:20 +02:00
|
|
|
compile project(':repositories')
|
2015-08-28 13:48:01 +02:00
|
|
|
compile project(':security-bc')
|
2015-07-03 11:28:06 +02:00
|
|
|
compile project(':wif')
|
2015-04-07 18:48:58 +02:00
|
|
|
compile 'org.slf4j:slf4j-simple:1.7.12'
|
2015-06-18 21:26:08 +02:00
|
|
|
compile 'args4j:args4j:2.32'
|
2015-08-28 13:48:01 +02:00
|
|
|
compile 'com.h2database:h2:1.4.187'
|
2015-04-29 20:08:59 +02:00
|
|
|
testCompile 'junit:junit:4.11'
|
2015-06-18 21:26:08 +02:00
|
|
|
}
|