Last active
September 26, 2017 14:02
-
-
Save ankushs92/420bbbef948285b912a8f1ff706f3705 to your computer and use it in GitHub Desktop.
.gitignore for Most groovy,gradle,java and spring boot projects
This file contains 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/ | |
repos/ | |
/repos/ | |
doc/ | |
/doc/ | |
.gradle/ | |
/bin/ | |
target/ | |
# OS Files # | |
.DS_Store | |
# JetBrain's Idea specific stuff # | |
.idea* | |
*.iml | |
# User-specific stuff: | |
.idea/workspace.xml | |
.idea/tasks.xml | |
.idea/dictionaries | |
.idea/vcs.xml | |
.idea/jsLibraryMappings.xml | |
# Sensitive or high-churn files: | |
.idea/dataSources.ids | |
.idea/dataSources.xml | |
.idea/dataSources.local.xml | |
.idea/sqlDataSources.xml | |
.idea/dynamic.xml | |
.idea/uiDesigner.xml | |
# Gradle: | |
.idea/gradle.xml | |
.idea/libraries | |
# Mongo Explorer plugin: | |
.idea/mongoSettings.xml | |
## File-based project format: | |
*.iws | |
## Plugin-specific files: | |
# IntelliJ | |
/out/ | |
# mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# JIRA plugin | |
atlassian-ide-plugin.xml | |
# Crashlytics plugin (for Android Studio and IntelliJ) | |
com_crashlytics_export_strings.xml | |
crashlytics.properties | |
crashlytics-build.properties | |
fabric.properties | |
*.class | |
browscap.csv | |
gradle/wrapper | |
gradlew.bat | |
gradlew | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment