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

Wip: Start implementing a SOP client

This commit is contained in:
Paul Schaub 2020-11-26 11:00:48 +01:00
parent ff8c6d8b6d
commit 9d3ad01dfc
8 changed files with 254 additions and 1 deletions

View file

@ -0,0 +1,30 @@
plugins {
id 'com.github.johnrengelman.shadow' version '1.2.2'
}
apply plugin: 'com.github.johnrengelman.shadow'
dependencies {
implementation(project(":pgpainless-core"))
compile 'info.picocli:picocli:3.9.6'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
/*
implementation "org.bouncycastle:bcprov-debug-jdk15on:$bouncyCastleVersion"
/*/
implementation "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
//*/
api "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
}
mainClassName = 'org.pgpainless.sop.PGPainlessCLI'
shadowJar {
baseName = 'pgpcli'
}