plugins { //... id("com.github.johnrengelman.shadow") version CommonVersionJVM.shadow}tasks.named("build") { dependsOn("shadowJar")}
Minimize
Minimize
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJartasks.withType<ShadowJar> { // It's a good practice to ensure the JAR is properly minimized and // includes only what's necessary minimize()}