20 lines
573 B
Groovy
20 lines
573 B
Groovy
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
pom.project {
|
|
name 'Jabit WIF Import/Export'
|
|
artifactId = 'jabit-wif'
|
|
description 'A Java implementation of the Bitmessage protocol. This contains methods to import from and export to Wallet Import Format.'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile 'org.ini4j:ini4j:0.5.4'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'com.nhaarman:mockito-kotlin:1.5.0'
|
|
testCompile project(':cryptography-bc')
|
|
}
|