Perhaps this is what you're looking for: gradle.startParameter.taskNames
To see what else you might find out about the start parameters, see: http://www.gradle.org/latest/docs/javadoc/org/gradle/StartParameter.html Regards, Steinar -----Original Message----- From: Peter Niederwieser [mailto:[email protected]] Sent: 27. mai 2011 00:54 To: [email protected] Subject: [gradle-user] Re: Determining The Target Project Jared D. Cottrell wrote: > > I'm wondering if there's a way to determine which project was targeted > for building when Gradle was invoked. > Not sure if I understand the question, but there is no such thing as a "target project" in Gradle. A multi-project build can (and often does) execute any number of tasks from any number of projects. I'm currently doing this when the task graph is ready, but I'd like to be able to do it earlier, preferably during evaluation. </quote Because tasks can be added at any point of the configuration phase, the earliest point where you'll be able to tell which tasks will be executed is in taskGraph.whenReady {}. -- Peter Niederwieser Principal Engineer, Gradleware http://gradleware.com Creator, Spock Framework http://spockframework.org Blog: http://pniederw.wordpress.com Twitter: @pniederw -- View this message in context: http://gradle.1045684.n5.nabble.com/Determining-The-Target-Project-tp4430090p4430336.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 --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
