2015-06-21 08:58:49 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
|
|
|
name 'Jabit Networking'
|
|
|
|
artifactId = 'jabit-networking'
|
|
|
|
description 'A Java implementation of the Bitmessage protocol. This is the networking part.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-20 14:18:29 +01:00
|
|
|
dependencies {
|
2015-04-07 18:48:58 +02:00
|
|
|
compile project(':domain')
|
2015-03-20 14:18:29 +01:00
|
|
|
testCompile 'junit:junit:4.11'
|
2015-09-24 08:09:20 +02:00
|
|
|
testCompile 'org.slf4j:slf4j-simple:1.7.12'
|
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
2015-09-25 23:35:31 +02:00
|
|
|
testCompile project(path: ':domain', configuration: 'testArtifacts')
|
2016-01-10 13:38:32 +01:00
|
|
|
testCompile project(':cryptography-bc')
|
2015-03-20 14:18:29 +01:00
|
|
|
}
|