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.
This commit is contained in:
Chris 2014-02-20 20:58:53 -08:00
parent aa65b484ac
commit 9aed7e7cba

View file

@ -48,7 +48,7 @@ minecraft {
sourceSets {
main {
java {
srcDir 'common/buildcraft'
srcDir 'common'
// exclude 'some exclusion'
// include 'some inclusion'
}