Merge pull request #17769 from rjernst/gradle_idea_excludes

Build: Exclude gradle and eclipse build dirs from intellij
This commit is contained in:
Ryan Ernst 2016-04-14 15:16:05 -07:00
commit 6d8ab56350
1 changed files with 4 additions and 0 deletions

View File

@ -181,6 +181,10 @@ allprojects {
outputDir = file('build-idea/classes/main')
testOutputDir = file('build-idea/classes/test')
// also ignore other possible build dirs
excludeDirs += file('build')
excludeDirs += file('build-eclipse')
iml {
// fix so that Gradle idea plugin properly generates support for resource folders
// see also https://issues.gradle.org/browse/GRADLE-2975