errorOutput = new ByteArrayOutputStream()
doLast {
+ println("Chrome STDOUT: ")
+ println(standardOutput.toString())
+ println("Chrome STDERR: ")
+ println(errorOutput.toString())
+
def found = false
def stderr = errorOutput.toString()
stderr.eachLine { line ->
}
}
if (!found) {
- println("Chrome STDOUT: ")
- println(standardOutput.toString())
- println("Chrome STDERR: ")
- println(errorOutput.toString())
throw new GradleException("Could not find evidence of Desktop launch in JalviewJS.")
}