Jabit/networking/build.gradle
Christian Basler d67c932fb2 Added synchronization code and unit test.
Synchronisation fails if the trusted host has no new messages - this needs to be fixed (but shouldn't be an issue for real world applications)
2015-09-24 08:09:20 +02:00

19 lines
537 B
Groovy

uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Jabit Networking'
artifactId = 'jabit-networking'
description 'A Java implementation of the Bitmessage protocol. This is the networking part.'
}
}
}
}
dependencies {
compile project(':domain')
testCompile 'junit:junit:4.11'
testCompile 'org.slf4j:slf4j-simple:1.7.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile project(':security-bc')
}