Jabit/cryptography-sc/build.gradle

19 lines
511 B
Groovy
Raw Normal View History

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')
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'
}