Last active
September 1, 2015 21:23
-
-
Save pinei/8e50d5748999ff3df200 to your computer and use it in GitHub Desktop.
Git ignore file for Grails / Java projects and IntelliJ IDEA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Mac files | |
| .DS_Store | |
| */.DS_Store | |
| # Output | |
| /target | |
| /classes | |
| /bin | |
| /out | |
| # Libs and docs | |
| /lib | |
| /docs | |
| *.jar | |
| *.class | |
| # Settings | |
| /.settings | |
| /.idea | |
| *.ipr | |
| *.iws | |
| *.iml | |
| .classpath | |
| .project |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment