2015-06-27 07:52:28 +02:00
|
|
|
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 {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2017-07-02 11:46:27 +02:00
|
|
|
compile 'org.ini4j:ini4j'
|
|
|
|
testCompile 'com.nhaarman:mockito-kotlin'
|
2018-02-20 14:04:40 +01:00
|
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api'
|
|
|
|
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
|
2016-01-10 13:38:32 +01:00
|
|
|
testCompile project(':cryptography-bc')
|
2015-06-27 07:52:28 +02:00
|
|
|
}
|