mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-11-13 03:22:05 +01:00
Fix duplicate logging binding problem
This commit is contained in:
parent
47e521be01
commit
338530b1bc
1 changed files with 9 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
plugins {
|
||||
id 'application'
|
||||
id "com.github.johnrengelman.shadow" version "6.1.0"
|
||||
}
|
||||
|
||||
group 'org.pgpainless'
|
||||
|
@ -18,7 +19,7 @@ dependencies {
|
|||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||
|
||||
// Logging
|
||||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
||||
implementation ("org.slf4j:slf4j-nop:$slf4jVersion")
|
||||
|
||||
// pgp.cert.d using PGPainless
|
||||
implementation project(":pgpainless-cert-d")
|
||||
|
@ -36,8 +37,13 @@ test {
|
|||
|
||||
mainClassName = 'pgp.cert_d.cli.PGPCertDCli'
|
||||
|
||||
application {
|
||||
mainClass = mainClassName
|
||||
}
|
||||
|
||||
/*
|
||||
jar {
|
||||
dependsOn(":pgpainless-cert-d:assemble")
|
||||
dependsOn(":pgpainless-cert-d:jar")
|
||||
manifest {
|
||||
attributes 'Main-Class': "$mainClassName"
|
||||
}
|
||||
|
@ -52,4 +58,5 @@ jar {
|
|||
exclude "META-INF/*.RSA"
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue