Christian Basler
ad97cd0633
At the same time removed necessity to register a cryptography provider which means SpongyCryptography can be used on the Oracle JVM as well - but this is something vor Jabit 3.0.
19 lines
512 B
Groovy
19 lines
512 B
Groovy
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
pom.project {
|
|
name 'Jabit Spongy Cryptography'
|
|
artifactId = 'jabit-cryptography-spongy'
|
|
description 'The Cryptography implementation using spongy castle (needed for Android)'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile 'com.madgag.spongycastle:prov:1.52.0.0'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
}
|