From 36a313cc30245dde9f35a6e394396394725a8b55 Mon Sep 17 00:00:00 2001 From: str4d Date: Mon, 27 Nov 2017 01:34:15 +0000 Subject: [PATCH] Don't make the apps/ dir itself a Gradle Java project --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c1f437f43..180888ec3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,5 @@ -subprojects { +// Exclude apps/ dir itself, but include its subdirs +configure(subprojects - project(':apps')) { apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'idea'