2015-06-21 08:58:49 +02:00
uploadArchives {
repositories {
mavenDeployer {
pom . project {
2016-01-17 05:42:48 +01:00
name 'Jabit Core'
artifactId = 'jabit-core'
2015-06-21 08:58:49 +02:00
description 'A Java implementation of the Bitmessage protocol. This is the core part. You\'ll either need the networking and repositories modules, too, or implement your own.'
}
}
}
}
2015-09-25 23:35:31 +02:00
configurations {
testArtifacts . extendsFrom testRuntime
}
task testJar ( type: Jar ) {
classifier = 'test'
from sourceSets . test . output
}
artifacts {
testArtifacts testJar
}
2015-03-20 14:18:29 +01:00
dependencies {
2015-04-06 10:01:03 +02:00
compile 'org.slf4j:slf4j-api:1.7.12'
2015-08-05 19:52:18 +02:00
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.10.19'
2016-01-10 13:38:32 +01:00
testCompile project ( ':cryptography-bc' )
2015-08-05 19:52:18 +02:00
}