Jabit/cryptography-sc/build.gradle

20 lines
584 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-07-02 08:37:43 +02:00
compile 'com.madgag.spongycastle:prov:1.56.0.0'
2016-06-16 19:47:59 +02:00
testCompile 'junit:junit:4.12'
2017-07-02 08:37:43 +02:00
testCompile 'com.nhaarman:mockito-kotlin:1.5.0'
testCompile project(path: ':core', configuration: 'testArtifacts')
}