2015-08-05 19:52:18 +02:00
|
|
|
uploadArchives {
|
|
|
|
repositories {
|
|
|
|
mavenDeployer {
|
|
|
|
pom.project {
|
2016-01-10 13:38:32 +01:00
|
|
|
name 'Jabit Bouncy Cryptography'
|
|
|
|
artifactId = 'jabit-cryptography-bouncy'
|
|
|
|
description 'The Cryptography implementation using bouncy castle'
|
2015-08-05 19:52:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-01-17 05:42:48 +01:00
|
|
|
compile project(':core')
|
2015-08-05 19:52:18 +02:00
|
|
|
compile 'org.bouncycastle:bcprov-jdk15on:1.52'
|
|
|
|
testCompile 'junit:junit:4.11'
|
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
|
|
}
|