2015-06-18 13:41:11 +02:00
|
|
|
plugins {
|
2017-04-03 18:21:08 +02:00
|
|
|
id "us.kirchmeier.capsule" version "1.0.2"
|
2015-06-18 13:41:11 +02:00
|
|
|
}
|
|
|
|
|
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
|
2017-07-02 08:37:43 +02:00
|
|
|
targetCompatibility = 1.8
|
2015-10-14 18:37:43 +02:00
|
|
|
|
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')
|
2017-07-02 11:46:27 +02:00
|
|
|
compile 'org.slf4j:slf4j-simple'
|
|
|
|
compile 'args4j:args4j'
|
|
|
|
compile 'com.h2database:h2'
|
2017-11-27 21:46:19 +01:00
|
|
|
compile 'org.apache.commons:commons-text'
|
2017-07-02 11:46:27 +02:00
|
|
|
testCompile 'com.nhaarman:mockito-kotlin'
|
2018-02-20 14:04:40 +01:00
|
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api'
|
|
|
|
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
|
2015-06-18 21:26:08 +02:00
|
|
|
}
|