mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-26 06:12:06 +01:00
Fix gradle build file
This commit is contained in:
parent
9d3ad01dfc
commit
379ad285f3
1 changed files with 15 additions and 6 deletions
|
@ -1,9 +1,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.github.johnrengelman.shadow' version '1.2.2'
|
id 'application'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.github.johnrengelman.shadow'
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":pgpainless-core"))
|
implementation(project(":pgpainless-core"))
|
||||||
|
|
||||||
|
@ -17,7 +15,7 @@ dependencies {
|
||||||
/*/
|
/*/
|
||||||
implementation "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
|
implementation "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
|
||||||
//*/
|
//*/
|
||||||
api "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
|
implementation "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
|
||||||
|
|
||||||
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
|
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
|
||||||
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
|
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
|
||||||
|
@ -25,6 +23,17 @@ dependencies {
|
||||||
|
|
||||||
mainClassName = 'org.pgpainless.sop.PGPainlessCLI'
|
mainClassName = 'org.pgpainless.sop.PGPainlessCLI'
|
||||||
|
|
||||||
shadowJar {
|
jar {
|
||||||
baseName = 'pgpcli'
|
manifest {
|
||||||
|
attributes 'Main-Class': "$mainClassName"
|
||||||
|
}
|
||||||
|
|
||||||
|
from {
|
||||||
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
||||||
|
} {
|
||||||
|
exclude "META-INF/*.SF"
|
||||||
|
exclude "META-INF/*.DSA"
|
||||||
|
exclude "META-INF/*.RSA"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue