Exclude mixins from minification

This commit is contained in:
Username404-59 2021-04-08 21:50:20 +02:00
parent 5cc170a3dd
commit 9a85f79695
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,9 @@ allprojects {
}
tasks {
withType(ShadowJar::class) {
minimize()
minimize() {
exclude("fr.username404.snowygui.mixins")
}
relocate("kotlin", "${rootProject.group}.kotlin")
archiveClassifier.set("shadow")
}