enelson wrote: > > When I run Gradle, I get an error saying that it can't resolve the > dependencies for task 'jarUpSubModules'. So then I tried printing out all > the tasks of the root project and 'clean' isn't one of them. Do I simply > not have access to those core project tasks from within the build? >
The 'clean' task is added by the 'base' plugin. If you don't apply this plugin (directly or indirectly) to a project, the task won't be available. -- Peter Niederwieser Principal Engineer, Gradleware http://gradleware.com Creator, Spock Framework http://spockframework.org Twitter: @pniederw -- View this message in context: http://gradle.1045684.n5.nabble.com/Accessing-root-project-clean-task-as-dependency-tp4621326p4622931.html Sent from the gradle-user mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
