|
| 1 | +# Created by https://www.toptal.com/developers/gitignore/api/netbeans,intellij,java,gradle,eclipse |
| 2 | +# Edit at https://www.toptal.com/developers/gitignore?templates=netbeans,intellij,java,gradle,eclipse |
| 3 | + |
| 4 | +### Eclipse ### |
| 5 | +.metadata |
| 6 | +bin/ |
| 7 | +tmp/ |
| 8 | +*.tmp |
| 9 | +*.bak |
| 10 | +*.swp |
| 11 | +*~.nib |
| 12 | +local.properties |
| 13 | +.settings/ |
| 14 | +.loadpath |
| 15 | +.recommenders |
| 16 | + |
| 17 | +# External tool builders |
| 18 | +.externalToolBuilders/ |
| 19 | + |
| 20 | +# Locally stored "Eclipse launch configurations" |
| 21 | +*.launch |
| 22 | + |
| 23 | +# PyDev specific (Python IDE for Eclipse) |
| 24 | +*.pydevproject |
| 25 | + |
| 26 | +# Java annotation processor (APT) |
| 27 | +.factorypath |
| 28 | + |
| 29 | +# TeXlipse plugin |
| 30 | +.texlipse |
| 31 | + |
| 32 | +# STS (Spring Tool Suite) |
| 33 | +.springBeans |
| 34 | + |
| 35 | +# Code Recommenders |
| 36 | +.recommenders/ |
| 37 | + |
| 38 | +# Annotation Processing |
| 39 | +.apt_generated/ |
| 40 | +.apt_generated_test/ |
| 41 | + |
| 42 | +# Uncomment this line if you wish to ignore the project description file. |
| 43 | +# Typically, this file would be tracked if it contains build/dependency configurations: |
| 44 | +#.project |
| 45 | + |
| 46 | +### Eclipse Patch ### |
| 47 | +# Spring Boot Tooling |
| 48 | +.sts4-cache/ |
| 49 | + |
| 50 | +### Intellij ### |
| 51 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
| 52 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 53 | + |
| 54 | +# User-specific stuff (and .idea/, as we do not want to rely on that) |
| 55 | +.idea/ |
| 56 | +*.iml |
| 57 | +*.ipr |
| 58 | + |
| 59 | +# Mongo Explorer plugin |
| 60 | +.idea/**/mongoSettings.xml |
| 61 | + |
| 62 | +# File-based project format |
| 63 | +*.iws |
| 64 | + |
| 65 | +# IntelliJ |
| 66 | +out/ |
| 67 | + |
| 68 | +# JIRA plugin |
| 69 | +atlassian-ide-plugin.xml |
| 70 | + |
| 71 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 72 | +com_crashlytics_export_strings.xml |
| 73 | +crashlytics.properties |
| 74 | +crashlytics-build.properties |
| 75 | +fabric.properties |
| 76 | + |
| 77 | +### Intellij Patch ### |
| 78 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 79 | + |
| 80 | +# *.iml |
| 81 | +# modules.xml |
| 82 | +# .idea/misc.xml |
| 83 | +# *.ipr |
| 84 | + |
| 85 | + |
| 86 | +### Java ### |
1 | 87 | # Compiled class file
|
2 | 88 | *.class
|
3 | 89 |
|
|
21 | 107 |
|
22 | 108 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
23 | 109 | hs_err_pid*
|
| 110 | + |
| 111 | +### NetBeans ### |
| 112 | +**/nbproject/private/ |
| 113 | +**/nbproject/Makefile-*.mk |
| 114 | +**/nbproject/Package-*.bash |
| 115 | +build/ |
| 116 | +nbbuild/ |
| 117 | +dist/ |
| 118 | +nbdist/ |
| 119 | +.nb-gradle/ |
| 120 | + |
| 121 | +### Gradle ### |
| 122 | +.gradle |
| 123 | + |
| 124 | +# Ignore Gradle GUI config |
| 125 | +gradle-app.setting |
| 126 | + |
| 127 | +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) |
| 128 | +!gradle-wrapper.jar |
| 129 | + |
| 130 | +# Cache of project |
| 131 | +.gradletasknamecache |
| 132 | + |
| 133 | +# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 |
| 134 | +# gradle/wrapper/gradle-wrapper.properties |
| 135 | + |
| 136 | +### Gradle Patch ### |
| 137 | +**/build/ |
| 138 | + |
| 139 | +# Eclipse Gradle plugin generated files |
| 140 | +# Eclipse Core |
| 141 | +.project |
| 142 | +# JDT-specific (Eclipse Java Development Tools) |
| 143 | +.classpath |
| 144 | + |
| 145 | +# End of https://www.toptal.com/developers/gitignore/api/netbeans,intellij,java,gradle,eclipse |
| 146 | +.DS_Store |
| 147 | + |
| 148 | +# VisualStudioCode |
| 149 | +.vscode/* |
| 150 | +!.vscode/settings.json |
| 151 | +!.vscode/extensions.json |
| 152 | +!.vscode/*.code-snippets |
| 153 | + |
| 154 | +# Local History for Visual Studio Code |
| 155 | +.history/ |
| 156 | + |
| 157 | +# Built Visual Studio Code Extensions |
| 158 | +*.vsix |
| 159 | + |
| 160 | +# mdbook |
| 161 | +book |
| 162 | +.clj-kondo |
| 163 | +.lsp |
0 commit comments