Jabit/cryptography-bc/build.gradle

20 lines
560 B
Groovy
Raw Normal View History

uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Jabit Bouncy Cryptography'
artifactId = 'jabit-cryptography-bouncy'
description 'The Cryptography implementation using bouncy castle'
}
}
}
}
dependencies {
compile project(':core')
2017-04-02 21:02:20 +02:00
compile 'org.bouncycastle:bcprov-jdk15on:1.56'
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'
testCompile project(path: ':core', configuration: 'testArtifacts')
}