Closed bonivi closed 3 years ago
Indeed, thanks for the feedback! I'll fix it in the next version.
When the fix will be implemented ? When the next version will be released ?
There are no major issues fixes or features are planned yet, and this one seems quite minor for a dedicated release. Is this issue critical for you somehow?
In a bash script we have something like projectVersion=$(./gradlew -q printProjectVersion) When we use the plugin bash variable projectVersion contains also "Git dependency..." messages
Aha, that must be annoying. Ok, let's see if I can release a quick fix.
This should be fixed now, released as 2.0.3. Feel free to reopen if you'll see any issues.
Running a command
gradle --quiet build
displays output likeThe reason is that plugin outputs all messages using
println
which is rough equivalent oflogger.quiet
, so you can't suppress them. Can you replaceprintln
withlogger.lifecycle
? In this way the output of plugin can be suppressed.