20 lines
562 B
Groovy
20 lines
562 B
Groovy
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
pom.project {
|
|
name 'Jabit Bouncy Cryptography'
|
|
artifactId = 'jabit-cryptography-bouncy'
|
|
description 'The Cryptography implementation using bouncy castle'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile 'org.bouncycastle:bcprov-jdk15on:1.57'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'com.nhaarman:mockito-kotlin:1.5.0'
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
|
}
|