mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-12-22 05:17:56 +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 {
|
plugins {
|
||||||
id 'application'
|
id 'application'
|
||||||
|
id "com.github.johnrengelman.shadow" version "6.1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.pgpainless'
|
group 'org.pgpainless'
|
||||||
|
@ -18,7 +19,7 @@ dependencies {
|
||||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
implementation ("org.slf4j:slf4j-nop:$slf4jVersion")
|
||||||
|
|
||||||
// pgp.cert.d using PGPainless
|
// pgp.cert.d using PGPainless
|
||||||
implementation project(":pgpainless-cert-d")
|
implementation project(":pgpainless-cert-d")
|
||||||
|
@ -36,8 +37,13 @@ test {
|
||||||
|
|
||||||
mainClassName = 'pgp.cert_d.cli.PGPCertDCli'
|
mainClassName = 'pgp.cert_d.cli.PGPCertDCli'
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass = mainClassName
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
jar {
|
jar {
|
||||||
dependsOn(":pgpainless-cert-d:assemble")
|
dependsOn(":pgpainless-cert-d:jar")
|
||||||
manifest {
|
manifest {
|
||||||
attributes 'Main-Class': "$mainClassName"
|
attributes 'Main-Class': "$mainClassName"
|
||||||
}
|
}
|
||||||
|
@ -52,4 +58,5 @@ jar {
|
||||||
exclude "META-INF/*.RSA"
|
exclude "META-INF/*.RSA"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue