Added printout for rat task to let user know that it takes a sig amount of time. This is due to being a single threaded task.
Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/5657318f Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/5657318f Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/5657318f Branch: refs/heads/master Commit: 5657318fe592aa44600f5b09ceb96bc717aa3270 Parents: b4493a6 Author: wisebaldone <[email protected]> Authored: Fri Dec 11 15:46:40 2015 +1000 Committer: wisebaldone <[email protected]> Committed: Fri Dec 11 15:46:40 2015 +1000 ---------------------------------------------------------------------- build.gradle | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/5657318f/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 5860801..e4cbcd5 100644 --- a/build.gradle +++ b/build.gradle @@ -58,3 +58,12 @@ rat { // Fail the build on rat errors, defaults to true failOnError = false } + +rat.doFirst { + println '' + println '----------------------------------------------' + println ' Checking Licenses ' + println ' This task can take between 10 to 20 minutes. ' + println '----------------------------------------------' + println '' +} \ No newline at end of file
