The documentation,
http://gradle.org/docs/current/userguide/userguide_single.html#archiveTasksNamingProperties,
says that any archive task's baseName will default to project.name, but I
don't see this happening. I don't it see it directly on the
AbstractArchiveTask nor do I see it being configured via a convention. Can
someone point me to where they think it is set project.name? To see an
example of this:
task dist(type: Zip) {
from 'tobezipped'
}
println "Project name: ${project.name}"
println "Base Name: ${dist.baseName}"
Base name will print out as null. And consequently the file will be named
".zip" instead of "${project.name}.zip"