Jabit/core/build.gradle

34 lines
862 B
Groovy
Raw Normal View History

uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Jabit Core'
artifactId = 'jabit-core'
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.'
}
}
}
}
configurations {
testArtifacts.extendsFrom testRuntime
}
task testJar(type: Jar) {
classifier = 'test'
from sourceSets.test.output
}
artifacts {
testArtifacts testJar
}
dependencies {
2017-04-03 18:21:08 +02:00
compile 'org.slf4j:slf4j-api:1.7.25'
2017-03-13 22:49:40 +01:00
compile 'ch.dissem.msgpack:msgpack:1.0.0'
2016-06-16 19:47:59 +02:00
testCompile 'junit:junit:4.12'
2016-05-13 12:24:16 +02:00
testCompile 'org.hamcrest:hamcrest-library:1.3'
2017-07-02 08:37:43 +02:00
testCompile 'com.nhaarman:mockito-kotlin:1.5.0'
testCompile project(':cryptography-bc')
}