From a45ba31a98fdb536d5a0978d97d88ef7e92e2026 Mon Sep 17 00:00:00 2001 From: Bruce Eckel Date: Tue, 16 Aug 2016 14:23:39 -0600 Subject: [PATCH] Moved Junit dependency into "subprojects" --- build.gradle | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index a9cb134a..311380a1 100644 --- a/build.gradle +++ b/build.gradle @@ -134,6 +134,10 @@ subprojects { mavenCentral() } + dependencies { + compile 'junit:junit:4.12' + } + sourceSets { main { java { @@ -220,9 +224,6 @@ subprojects { } project(':verifying') { - dependencies { - compile 'junit:junit:4.12' - } jmh { include = 'verifying.jmhtests.*' } @@ -261,12 +262,6 @@ project(':serialization') { } } -project(':references') { - dependencies { - compile 'junit:junit:4.12' - } -} - project(':interfaces') { dependencies { compile project(':polymorphism')