Can I remove the 'jar' task in gradle build?
You can do that by 2 ways:
explicitly exclude the
jar
task from execution:gradle build -x jar
disable the
jar
task inbuild.gradle
:apply plugin: 'java' jar.enabled = false
You can do that by 2 ways:
explicitly exclude the jar
task from execution:
gradle build -x jar
disable the jar
task in build.gradle
:
apply plugin: 'java'
jar.enabled = false