Skip to content

Instantly share code, notes, and snippets.

@breskeby
Created October 8, 2014 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breskeby/b6501f69c26660777d17 to your computer and use it in GitHub Desktop.
Save breskeby/b6501f69c26660777d17 to your computer and use it in GitHub Desktop.
overwrite idea gradle import defaults
apply plugin:'idea'
idea {
module {
outputDir = file('out')
testOutputDir = file('testout')
excludeDirs -= file('build')
excludeDirs += file('build/classes')
excludeDirs += file('build/libs')
excludeDirs += file('build/tmp')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment