Add shadow plugin

This commit is contained in:
Victor 2020-09-29 00:16:58 +03:00
parent 2f81307caf
commit e21f34c10e

View File

@ -1,4 +1,5 @@
plugins { plugins {
id "com.github.johnrengelman.shadow" version "6.0.0"
id 'java' id 'java'
id 'application' id 'application'
} }
@ -20,3 +21,9 @@ dependencies {
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }
shadowJar {
mergeServiceFiles()
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}