Skip to content

Commit

Permalink
Remove .idea/libraries from version control, ignore build/dist/media …
Browse files Browse the repository at this point in the history
…in IDEA project
  • Loading branch information
ingokegel committed Dec 28, 2016
1 parent de7cb67 commit 7f75c12
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 33 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,6 +2,7 @@
.idea/workspace.xml
.idea/modules.xml
.idea/modules/
.idea/libraries/
.idea/shelf/
build/
media/
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 9 additions & 0 deletions build.gradle
@@ -1,3 +1,5 @@
apply plugin: 'idea'

import org.apache.tools.ant.taskdefs.condition.Os

version = '5.1-beta3'
Expand Down Expand Up @@ -116,3 +118,10 @@ gradle.projectsEvaluated {
}
}
}

idea {
module {
name = 'root'
excludeDirs += files('build', 'dist', 'media')
}
}

0 comments on commit 7f75c12

Please sign in to comment.