Skip to content

Commit 521bedd

Browse files
author
Andreas Dann
committed
add gitignore
1 parent 61c1600 commit 521bedd

File tree

1 file changed

+193
-0
lines changed

1 file changed

+193
-0
lines changed

.gitignore

Lines changed: 193 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
2+
# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij
3+
# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,intellij
4+
5+
### Eclipse ###
6+
.metadata
7+
bin/
8+
tmp/
9+
*.tmp
10+
*.bak
11+
*.swp
12+
*~.nib
13+
local.properties
14+
.settings/
15+
.loadpath
16+
.recommenders
17+
18+
# External tool builders
19+
.externalToolBuilders/
20+
21+
# Locally stored "Eclipse launch configurations"
22+
*.launch
23+
24+
# PyDev specific (Python IDE for Eclipse)
25+
*.pydevproject
26+
27+
# CDT-specific (C/C++ Development Tooling)
28+
.cproject
29+
30+
# CDT- autotools
31+
.autotools
32+
33+
# Java annotation processor (APT)
34+
.factorypath
35+
36+
# PDT-specific (PHP Development Tools)
37+
.buildpath
38+
39+
# sbteclipse plugin
40+
.target
41+
42+
# Tern plugin
43+
.tern-project
44+
45+
# TeXlipse plugin
46+
.texlipse
47+
48+
# STS (Spring Tool Suite)
49+
.springBeans
50+
51+
# Code Recommenders
52+
.recommenders/
53+
54+
# Annotation Processing
55+
.apt_generated/
56+
57+
# Scala IDE specific (Scala & Java development for Eclipse)
58+
.cache-main
59+
.scala_dependencies
60+
.worksheet
61+
62+
### Eclipse Patch ###
63+
# Eclipse Core
64+
.project
65+
66+
# JDT-specific (Eclipse Java Development Tools)
67+
.classpath
68+
69+
# Annotation Processing
70+
.apt_generated
71+
72+
.sts4-cache/
73+
74+
### Intellij ###
75+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
76+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
77+
78+
# User-specific stuff
79+
.idea/**/workspace.xml
80+
.idea/**/tasks.xml
81+
.idea/**/usage.statistics.xml
82+
.idea/**/dictionaries
83+
.idea/**/shelf
84+
85+
# Generated files
86+
.idea/**/contentModel.xml
87+
88+
# Sensitive or high-churn files
89+
.idea/**/dataSources/
90+
.idea/**/dataSources.ids
91+
.idea/**/dataSources.local.xml
92+
.idea/**/sqlDataSources.xml
93+
.idea/**/dynamic.xml
94+
.idea/**/uiDesigner.xml
95+
.idea/**/dbnavigator.xml
96+
97+
# Gradle
98+
.idea/**/gradle.xml
99+
.idea/**/libraries
100+
101+
# Gradle and Maven with auto-import
102+
# When using Gradle or Maven with auto-import, you should exclude module files,
103+
# since they will be recreated, and may cause churn. Uncomment if using
104+
# auto-import.
105+
# .idea/modules.xml
106+
# .idea/*.iml
107+
# .idea/modules
108+
109+
# CMake
110+
cmake-build-*/
111+
112+
# Mongo Explorer plugin
113+
.idea/**/mongoSettings.xml
114+
115+
# File-based project format
116+
*.iws
117+
118+
# IntelliJ
119+
out/
120+
121+
# mpeltonen/sbt-idea plugin
122+
.idea_modules/
123+
124+
# JIRA plugin
125+
atlassian-ide-plugin.xml
126+
127+
# Cursive Clojure plugin
128+
.idea/replstate.xml
129+
130+
# Crashlytics plugin (for Android Studio and IntelliJ)
131+
com_crashlytics_export_strings.xml
132+
crashlytics.properties
133+
crashlytics-build.properties
134+
fabric.properties
135+
136+
# Editor-based Rest Client
137+
.idea/httpRequests
138+
139+
# Android studio 3.1+ serialized cache file
140+
.idea/caches/build_file_checksums.ser
141+
142+
# JetBrains templates
143+
**___jb_tmp___
144+
145+
### Intellij Patch ###
146+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
147+
148+
# *.iml
149+
# modules.xml
150+
# .idea/misc.xml
151+
# *.ipr
152+
153+
# Sonarlint plugin
154+
.idea/sonarlint
155+
156+
### Java ###
157+
# Compiled class file
158+
*.class
159+
160+
# Log file
161+
*.log
162+
163+
# BlueJ files
164+
*.ctxt
165+
166+
# Mobile Tools for Java (J2ME)
167+
.mtj.tmp/
168+
169+
# Package Files #
170+
*.jar
171+
*.war
172+
*.nar
173+
*.ear
174+
*.zip
175+
*.tar.gz
176+
*.rar
177+
178+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
179+
hs_err_pid*
180+
181+
### Maven ###
182+
target/
183+
pom.xml.tag
184+
pom.xml.releaseBackup
185+
pom.xml.versionsBackup
186+
pom.xml.next
187+
release.properties
188+
dependency-reduced-pom.xml
189+
buildNumber.properties
190+
.mvn/timing.properties
191+
.mvn/wrapper/maven-wrapper.jar
192+
193+
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij

0 commit comments

Comments
 (0)