Created
August 21, 2014 13:59
-
-
Save dostiharise/1a1b1248f0ce2f8751ea to your computer and use it in GitHub Desktop.
master.gitignore : Java, Eclipse, IntelliJ, Maven and other
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
# Directories # | |
/build/ | |
/bin/ | |
target/ | |
# OS Files # | |
.DS_Store | |
*.class | |
# Package Files # | |
*.jar | |
*.war | |
*.ear | |
*.db | |
###################### | |
# Windows | |
###################### | |
# Windows image file caches | |
Thumbs.db | |
# Folder config file | |
Desktop.ini | |
###################### | |
# OSX | |
###################### | |
.DS_Store | |
.svn | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
###################### | |
# Eclipse | |
###################### | |
*.pydevproject | |
.project | |
.metadata | |
bin/** | |
tmp/** | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
/src/main/resources/rebel.xml | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# Covers JetBrains IDEs: IntelliJ | |
## Directory-based project format | |
.idea/ | |
*.iml | |
# if you remove the above rule, at least ignore user-specific stuff: | |
# .idea/workspace.xml | |
# .idea/tasks.xml | |
# .idea/dictionaries | |
# and these sensitive or high-churn files: | |
# .idea/dataSources.ids | |
# .idea/dataSources.xml | |
# .idea/sqlDataSources.xml | |
# .idea/dynamic.xml | |
# and, if using gradle:: | |
# .idea/gradle.xml | |
# .idea/libraries | |
## File-based project format | |
*.ipr | |
*.iws | |
## Additional for IntelliJ | |
out/ | |
# generated by mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# generated by JIRA plugin | |
atlassian-ide-plugin.xml | |
# generated by Crashlytics plugin (for Android Studio and Intellij) | |
com_crashlytics_export_strings.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment