Jabit/cryptography-sc/build.gradle

20 lines
582 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.54.0.0'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.7.21'
testCompile project(path: ':core', configuration: 'testArtifacts')
}