Vincent Galloy
Vincent Galloy
Thank for you quick reply ! 1. As far as I understand, `Task#getLoggingManager` allows user to redirect standardOutput to a log level. But in paralllel execution, the `ExecSpec` may run...
I don't face the same behaviour. There is probably something I don't understand. 1. By default INFO log should not be display during build 2. When you capture standardOutput (like...
Yes : https://github.com/vgalloy/unbroken-dome-test/blob/master/buildSrc/src/main/kotlin/vgalloy.unbroken-dome-conventions.gradle.kts#L14
I'm using Gradle 7.2 With gradle wrapper you can see this information here: https://github.com/vgalloy/unbroken-dome-test/blob/master/gradle/wrapper/gradle-wrapper.properties#L3 I have the same output with Gradle 6.3, 7.0, 7.1 and 7.3. I'm using Java 16...
I opened a bug for Gradle team: https://github.com/gradle/gradle/issues/18991
Any news on this subject ?
Hello @danfickle, You seems to be the main contributor to this project. Could you please take look to this PR and tell me if something goes wrong. Regards, Vincent GALLOY
You can add http headers with `RequestBuilderWrapper#header(String, String)` and `RequestBuilderWrapper#headers(Map)` Sample example with HTTP GET method : `http("request_1").get("/hasHeader").header("testHeader", "value")`