Hi all:

I am currently struggling in the attempt of getting to see the output
of an ant task.
As described in ch. 8.1 of the user guide, I tried to set the
redirection from QUIET to log level INFO, as follows...

task('compile').doLast {
    project.captureStandardOutput(LogLevel.INFO)
    ant.exec(executable: 'cmd', dir: projectDir) {
        arg(value: '/c')
        arg(value: 'nmake')
    }
}

... also calling disableStandardOutputCapture() on my project didn't
bring the stdout to gradle's console.

Any ideas?

Thanks,
Niko

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to