mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-17 18:02:05 +01:00
18 lines
326 B
Groovy
18 lines
326 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.vanitasvitae.crypto'
|
|
version '0.1-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compile 'org.bouncycastle:bcprov-jdk15on:1.59'
|
|
compile 'org.bouncycastle:bcpg-jdk15on:1.59'
|
|
}
|