Jabit/demo/build.gradle

38 lines
938 B
Groovy
Raw Normal View History

plugins {
2017-04-03 18:21:08 +02:00
id "us.kirchmeier.capsule" version "1.0.2"
}
uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Jabit Demo'
artifactId = 'jabit-demo'
description 'An example Bitmessage client using Jabit.'
}
}
}
}
sourceCompatibility = 1.8
test.enabled = Boolean.valueOf(systemTestsEnabled)
task fatCapsule(type: FatCapsule) {
applicationClass 'ch.dissem.bitmessage.demo.Main'
}
dependencies {
compile project(':core')
compile project(':networking')
2015-05-19 19:16:20 +02:00
compile project(':repositories')
compile project(':cryptography-bc')
compile project(':wif')
2017-04-03 18:21:08 +02:00
compile 'org.slf4j:slf4j-simple:1.7.25'
compile 'args4j:args4j:2.33'
compile 'com.h2database:h2:1.4.194'
compile 'org.apache.commons:commons-lang3:3.5'
2016-06-16 19:47:59 +02:00
testCompile 'junit:junit:4.12'
2017-04-03 18:21:08 +02:00
testCompile 'org.mockito:mockito-core:2.7.21'
}