Russel Winder wrote:
The Gant build works fine with Gradle Wrapper as per used by Gradle itself, so there is no panic. However using the latest Gradle, the build results in: FAILURE: Could not determine which tasks to execute.* What went wrong:Project 'gant' not found in project ':gant'.* Try:Run with -t to get a list of available tasks.BUILD FAILEDI think that this means that command line specification of sub-project tasks has changed. Whereas I used to type: gradle clean gant:uninstall gant:install I now seem to have to type: gradle clean :gant:uninstall :gant:install Is this right? Did I just miss an announcement (very possible).
The command-line usage shouldn't have changed (but might have accidentally). Are you running this from the root directory or a subdirectory? According to the error message, it is looking for project 'gant' in project 'gant', rather than the root project, for some reason.
-- Adam Murdoch Gradle Developer http://www.gradle.org --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
