2015-08-05 19:52:18 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
2016-01-10 13:38:32 +01:00
|
|
|
name 'Jabit Spongy Cryptography'
|
|
|
|
artifactId = 'jabit-cryptography-spongy'
|
|
|
|
description 'The Cryptography implementation using spongy castle (needed for Android)'
|
2015-08-05 19:52:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2017-04-03 18:21:08 +02:00
|
|
|
compile 'com.madgag.spongycastle:prov:1.54.0.0'
|
2016-06-16 19:47:59 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-04-03 18:21:08 +02:00
|
|
|
testCompile 'org.mockito:mockito-core:2.7.21'
|
2017-06-08 16:59:24 +02:00
|
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
2015-08-05 19:52:18 +02:00
|
|
|
}
|