When I use the code below, a file of jar will generate after gradle build.
apply plugin \'java\'
Is there any settings won\'t generate the
This worked for me:
configurations.archives.with { artifacts.remove artifacts.find { it.toString().contains("jar") } }