Im using
"com.gradleup.shadow" version "8.3.6" plugin to have fat jar, but this is getting triggered by default when build triggered. How to disable this behavior? There is seperate task i see "shadowJar" , i want to use this explicitely. Reason i'm asking is, in intellij which shows gradle tasks, i'm executing
build task which unnecessarily taking more time to finish the build due to this shadow task execution. I'm aware that If i'm running from commandline i can exclude the task using
gradle build -x shadowJar
but it will be really helpful to disable the default configuration in shadowJar plugin..