calling gradle “build” task in another project
问题 I am only a couple of days into using gradle In my current build.gradle script I have a task which I would like to call the build task in another project (ie. defined in a different build.gradle somewhere else) after each time it is executed My question is how do I call a task from another project? I guess I want to do something like tasks.build.execute() but it doesn't seem to work. I tried this: commandLine "${rootDir}\\gradle", 'build', 'eclipse' it at least executed the build and eclipse