17 lines
446 B
Groovy
17 lines
446 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 'org.slf4j:slf4j-simple:1.7.12'
|
|
testCompile 'junit:junit:4.11'
|
|
} |