Repository: aurora Updated Branches: refs/heads/master 24f968a50 -> f5d7e0106
Fixup missing commons compile dep. Reviewed at https://reviews.apache.org/r/41893/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/f5d7e010 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/f5d7e010 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/f5d7e010 Branch: refs/heads/master Commit: f5d7e0106accdf208edb3494215085482fc91278 Parents: 24f968a Author: John Sirois <[email protected]> Authored: Mon Jan 4 16:18:49 2016 -0800 Committer: Bill Farner <[email protected]> Committed: Mon Jan 4 16:18:49 2016 -0800 ---------------------------------------------------------------------- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/f5d7e010/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index d4e7d36..14ebf6b 100644 --- a/build.gradle +++ b/build.gradle @@ -169,6 +169,11 @@ project(':commons') { compile "org.easymock:easymock:3.4" compile "org.slf4j:slf4j-jdk14:${slf4jRev}" + // There are a few testing support libs in the src/main/java trees that use junit - currently: + // src/main/java/org/apache/aurora/common/zookeeper/testing + // src/main/java/org/apache/aurora/common/testing + compile "junit:junit:${junitRev}" + testCompile "junit:junit:${junitRev}" } }
