Re: [gradle-user] gradle tasks

2011-07-24 Thread Luke Daley
On 23/07/2011, at 8:18 AM, Levi Yourchuck wrote: > I am trying to do this: > > gradle clean create_distro_A clean create_distro_B > > There needs to be a 'clean' in between 'create_distro_A' and > 'create_distro_B'. > > Otherwise distro B is corrupted by distro A. Why do you need to clean?

Re: [gradle-user] gradle tasks

2011-07-22 Thread Levi Yourchuck
I am trying to do this: gradle clean create_distro_A clean create_distro_B There needs to be a 'clean' in between 'create_distro_A' and 'create_distro_B'. Otherwise distro B is corrupted by distro A. > task compileDistros(dependsOn: compile_distro_A, > compile_distro_B) > > Though I suspect th

Re: [gradle-user] gradle tasks

2011-07-20 Thread Paul Speed
This problem would be true for ANY batch file called from another batch file. If you want to call a batch file from another then use "call", ie: call gradle clean compile_distro_A ...and lay the blame squarely on DOS in this case. ;) -Paul On 7/20/2011 7:55 PM, Levi Yourchuck wrote: Hi, In m

Re: [gradle-user] gradle tasks

2011-07-20 Thread Luke Daley
On 21/07/2011, at 9:55 AM, Levi Yourchuck wrote: > Hi, > > In my quest to be able to do this: > > gradle clean compile_distro_A clean compile_distro_B > > I have run into ordering problems. > > So as an attempt to get past this I attempted a hack which seems absurd but I > created a .bat fil

Re: [gradle-user] 'gradle tasks' fails, yet 'clean build' works.

2011-01-11 Thread Dan Haywood
Hi Rene, I'm just starting on a project that's using gradle, and I'm still figuring out what's what. Anyway, we think we've sorted the issue. We had the following fragment: task findConcreteDependencies(dependsOn:"build") { ... subprojects { ... checks each bui

Re: [gradle-user] 'gradle tasks' fails, yet 'clean build' works.

2011-01-11 Thread Rene Groeschke
Hi Dan, welcome aboard. could you post your build file? regards, René Am Di, 11.01.2011, 16:37, schrieb Dan Haywood: > Newbie question, so be gentle... > > > I have a configuration whereby "gradle tasks" is failing, and yet "gradle > clean build" works. > > The error is: > > > * What went wrong:

Re: [gradle-user] gradle tasks -> how to display compileJava

2010-11-22 Thread Etienne Studer
Thanks, Adam. I don't think I would have found it there at the end of the output on my own. Etienne On 23.11.2010, at 07:00, Adam Murdoch wrote: > > On 23/11/2010, at 8:56 AM, Etienne Studer wrote: > >> Hi >> >> When I run 'gradle tasks' on a script that applies the java plugin, I cannot >

Re: [gradle-user] gradle tasks -> how to display compileJava

2010-11-22 Thread Adam Murdoch
On 23/11/2010, at 8:56 AM, Etienne Studer wrote: > Hi > > When I run 'gradle tasks' on a script that applies the java plugin, I cannot > see the compileJava task (I guess it's because this task does not belong to a > group and is only used as a dependency of other tasks). > > How can I make i

Re: [gradle-user] gradle tasks -> how to display compileJava

2010-11-22 Thread Rene Groeschke
Hi Etienne, what about "gradle tasks --all" ? regards, René Am 22.11.10 22:56, schrieb Etienne Studer: > Hi > > When I run 'gradle tasks' on a script that applies the java plugin, I cannot > see the compileJava task (I guess it's because this task does not belong to a > group and is only used