1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 02:39:39 +02:00

Initial commit

This commit is contained in:
Paul Schaub 2018-06-02 21:21:35 +02:00
commit 6dd2e83acf
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
27 changed files with 1325 additions and 0 deletions

18
build.gradle Normal file
View file

@ -0,0 +1,18 @@
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'
}