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-10-14 18:37:43 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
2016-02-04 10:12:43 +01:00
|
|
|
test.enabled = Boolean.valueOf(systemTestsEnabled)
|
|
|
|
|
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 {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2015-04-07 18:48:58 +02:00
|
|
|
compile project(':networking')
|
2015-05-19 19:16:20 +02:00
|
|
|
compile project(':repositories')
|
2016-01-10 13:38:32 +01:00
|
|
|
compile project(':cryptography-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-10-12 12:42:11 +02:00
|
|
|
compile 'com.h2database:h2:1.4.190'
|
2015-04-29 20:08:59 +02:00
|
|
|
testCompile 'junit:junit:4.11'
|
2016-02-02 20:40:01 +01:00
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
2015-06-18 21:26:08 +02:00
|
|
|
}
|