|
| 1 | +# Created by https://www.gitignore.io/api/java,eclipse,intellij |
| 2 | + |
| 3 | +### Eclipse ### |
| 4 | + |
| 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 | +# CDT-specific (C/C++ Development Tooling) |
| 27 | +.cproject |
| 28 | + |
| 29 | +# Java annotation processor (APT) |
| 30 | +.factorypath |
| 31 | + |
| 32 | +# PDT-specific (PHP Development Tools) |
| 33 | +.buildpath |
| 34 | + |
| 35 | +# sbteclipse plugin |
| 36 | +.target |
| 37 | + |
| 38 | +# Tern plugin |
| 39 | +.tern-project |
| 40 | + |
| 41 | +# TeXlipse plugin |
| 42 | +.texlipse |
| 43 | + |
| 44 | +# STS (Spring Tool Suite) |
| 45 | +.springBeans |
| 46 | + |
| 47 | +# Code Recommenders |
| 48 | +.recommenders/ |
| 49 | + |
| 50 | +# Scala IDE specific (Scala & Java development for Eclipse) |
| 51 | +.cache-main |
| 52 | +.scala_dependencies |
| 53 | +.worksheet |
| 54 | + |
| 55 | +### Eclipse Patch ### |
| 56 | +# Eclipse Core |
| 57 | +.project |
| 58 | + |
| 59 | +# JDT-specific (Eclipse Java Development Tools) |
| 60 | +.classpath |
| 61 | + |
| 62 | +# Annotation Processing |
| 63 | +.apt_generated |
| 64 | + |
| 65 | +### Intellij ### |
| 66 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm |
| 67 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 68 | + |
| 69 | +# User-specific stuff: |
| 70 | +.idea/**/workspace.xml |
| 71 | +.idea/**/tasks.xml |
| 72 | +.idea/dictionaries |
| 73 | + |
| 74 | +# Sensitive or high-churn files: |
| 75 | +.idea/**/dataSources/ |
| 76 | +.idea/**/dataSources.ids |
| 77 | +.idea/**/dataSources.xml |
| 78 | +.idea/**/dataSources.local.xml |
| 79 | +.idea/**/sqlDataSources.xml |
| 80 | +.idea/**/dynamic.xml |
| 81 | +.idea/**/uiDesigner.xml |
| 82 | + |
| 83 | +# Gradle: |
| 84 | +.idea/**/gradle.xml |
| 85 | +.idea/**/libraries |
| 86 | + |
| 87 | +# CMake |
| 88 | +cmake-build-debug/ |
| 89 | + |
| 90 | +# Mongo Explorer plugin: |
| 91 | +.idea/**/mongoSettings.xml |
| 92 | + |
| 93 | +## File-based project format: |
| 94 | +*.iws |
| 95 | + |
| 96 | +## Plugin-specific files: |
| 97 | + |
| 98 | +# IntelliJ |
| 99 | +/out/ |
| 100 | + |
| 101 | +# mpeltonen/sbt-idea plugin |
| 102 | +.idea_modules/ |
| 103 | + |
| 104 | +# JIRA plugin |
| 105 | +atlassian-ide-plugin.xml |
| 106 | + |
| 107 | +# Cursive Clojure plugin |
| 108 | +.idea/replstate.xml |
| 109 | + |
| 110 | +# Ruby plugin and RubyMine |
| 111 | +/.rakeTasks |
| 112 | + |
| 113 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 114 | +com_crashlytics_export_strings.xml |
| 115 | +crashlytics.properties |
| 116 | +crashlytics-build.properties |
| 117 | +fabric.properties |
| 118 | + |
| 119 | +### Intellij Patch ### |
| 120 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 121 | + |
| 122 | +# *.iml |
| 123 | +# modules.xml |
| 124 | +# .idea/misc.xml |
| 125 | +# *.ipr |
| 126 | + |
| 127 | +# Sonarlint plugin |
| 128 | +.idea/sonarlint |
| 129 | + |
| 130 | +### Java ### |
| 131 | +# Compiled class file |
| 132 | +*.class |
| 133 | + |
| 134 | +# Log file |
| 135 | +*.log |
| 136 | + |
| 137 | +# BlueJ files |
| 138 | +*.ctxt |
| 139 | + |
| 140 | +# Mobile Tools for Java (J2ME) |
| 141 | +.mtj.tmp/ |
| 142 | + |
| 143 | +# Package Files # |
| 144 | +*.jar |
| 145 | +*.war |
| 146 | +*.ear |
| 147 | +*.zip |
| 148 | +*.tar.gz |
| 149 | +*.rar |
| 150 | + |
| 151 | +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 152 | +hs_err_pid* |
| 153 | + |
| 154 | + |
| 155 | +# End of https://www.gitignore.io/api/java,eclipse,intellij |
0 commit comments