From 9aed7e7cba741f4b0540b591d6e91aaffe16d7a1 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 20 Feb 2014 20:58:53 -0800 Subject: [PATCH] Corrects srcDir property Please validate this change doesn't impact other workspaces. I validated 'gradle build' and 'gradle idea' In the IDEA workspace, the "Source Root" directory was incorrectly directed to common/buildcraft. This had to be changed to common in the IDEA workspace. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3ed7f13c..94eca381 100755 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ minecraft { sourceSets { main { java { - srcDir 'common/buildcraft' + srcDir 'common' // exclude 'some exclusion' // include 'some inclusion' }