Created
November 15, 2020 00:48
-
-
Save sandipchitale/78495f78d9b9ee4c84bbbcb62ce74b4d to your computer and use it in GitHub Desktop.
Apply gradle-taskinfo plugin to rootProject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
initscript { | |
repositories { | |
maven { | |
url "https://plugins.gradle.org/m2/" | |
} | |
} | |
dependencies { | |
classpath "gradle.plugin.org.barfuin.gradle.taskinfo:gradle-taskinfo:1.0.3" | |
} | |
} | |
rootProject { | |
apply plugin: org.barfuin.gradle.taskinfo.GradleTaskInfoPlugin | |
taskinfo { | |
clipped = true | |
color = false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put the above file in
folder.
Usage with a simple SpringBoot project: