GEODE-608: Add rat task as a depedency for the check task The rat constraints will now be applied whenever the check task is performed (typically via `gradle build`).
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/e45539a8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/e45539a8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/e45539a8 Branch: refs/heads/feature/GEODE-291 Commit: e45539a831fb57c6fdcaafab52463790ee491f71 Parents: a31c8fb Author: Anthony Baker <[email protected]> Authored: Wed Dec 2 08:45:11 2015 -0800 Committer: Anthony Baker <[email protected]> Committed: Thu Dec 10 09:44:57 2015 -0800 ---------------------------------------------------------------------- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/e45539a8/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index babdb8b..6045b72 100755 --- a/build.gradle +++ b/build.gradle @@ -567,7 +567,7 @@ subprojects { description 'Run this task before checking in code to validate changes. This task combines the following tasks: build, integrationTest, and distributedTest' } - check.dependsOn checkMissedTests + check.dependsOn checkMissedTests, rat combineReports.mustRunAfter check, test, integrationTest, distributedTest, checkMissedTests build.finalizedBy combineReports check.finalizedBy combineReports
