Skip to content

Commit 63e5431

Browse files
author
Roman Zimmer
committed
Re-added .gitignore
1 parent c69d516 commit 63e5431

File tree

1 file changed

+166
-0
lines changed

1 file changed

+166
-0
lines changed

.gitignore

+166
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
2+
# Created by https://www.gitignore.io/api/java,maven,intellij,eclipse,osx
3+
4+
### Maven ###
5+
target/
6+
pom.xml.tag
7+
pom.xml.releaseBackup
8+
pom.xml.versionsBackup
9+
pom.xml.next
10+
release.properties
11+
dependency-reduced-pom.xml
12+
buildNumber.properties
13+
.mvn/timing.properties
14+
15+
# Exclude maven wrapper
16+
!/.mvn/wrapper/maven-wrapper.jar
17+
18+
19+
### Intellij ###
20+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
21+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
22+
23+
# User-specific stuff:
24+
.idea/workspace.xml
25+
.idea/tasks.xml
26+
27+
# Sensitive or high-churn files:
28+
.idea/dataSources/
29+
.idea/dataSources.ids
30+
.idea/dataSources.xml
31+
.idea/dataSources.local.xml
32+
.idea/sqlDataSources.xml
33+
.idea/dynamic.xml
34+
.idea/uiDesigner.xml
35+
36+
# Gradle:
37+
.idea/gradle.xml
38+
.idea/libraries
39+
40+
# Mongo Explorer plugin:
41+
.idea/mongoSettings.xml
42+
43+
## File-based project format:
44+
*.iws
45+
46+
## Plugin-specific files:
47+
48+
# IntelliJ
49+
/out/
50+
51+
# mpeltonen/sbt-idea plugin
52+
.idea_modules/
53+
54+
# JIRA plugin
55+
atlassian-ide-plugin.xml
56+
57+
# Crashlytics plugin (for Android Studio and IntelliJ)
58+
com_crashlytics_export_strings.xml
59+
crashlytics.properties
60+
crashlytics-build.properties
61+
fabric.properties
62+
63+
### Intellij Patch ###
64+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
65+
66+
*.iml
67+
modules.xml
68+
.idea/misc.xml
69+
*.ipr
70+
.idea/
71+
72+
### Eclipse ###
73+
74+
.metadata
75+
bin/
76+
tmp/
77+
*.tmp
78+
*.bak
79+
*.swp
80+
*~.nib
81+
local.properties
82+
.settings/
83+
.loadpath
84+
.recommenders
85+
86+
# Eclipse Core
87+
.project
88+
89+
# External tool builders
90+
.externalToolBuilders/
91+
92+
# Locally stored "Eclipse launch configurations"
93+
*.launch
94+
95+
# PyDev specific (Python IDE for Eclipse)
96+
*.pydevproject
97+
98+
# CDT-specific (C/C++ Development Tooling)
99+
.cproject
100+
101+
# JDT-specific (Eclipse Java Development Tools)
102+
.classpath
103+
104+
# Java annotation processor (APT)
105+
.factorypath
106+
107+
# PDT-specific (PHP Development Tools)
108+
.buildpath
109+
110+
# sbteclipse plugin
111+
.target
112+
113+
# Tern plugin
114+
.tern-project
115+
116+
# TeXlipse plugin
117+
.texlipse
118+
119+
# STS (Spring Tool Suite)
120+
.springBeans
121+
122+
# Code Recommenders
123+
.recommenders/
124+
125+
126+
### OSX ###
127+
*.DS_Store
128+
.AppleDouble
129+
.LSOverride
130+
131+
# Icon must end with two \r
132+
Icon
133+
# Thumbnails
134+
._*
135+
# Files that might appear in the root of a volume
136+
.DocumentRevisions-V100
137+
.fseventsd
138+
.Spotlight-V100
139+
.TemporaryItems
140+
.Trashes
141+
.VolumeIcon.icns
142+
.com.apple.timemachine.donotpresent
143+
# Directories potentially created on remote AFP share
144+
.AppleDB
145+
.AppleDesktop
146+
Network Trash Folder
147+
Temporary Items
148+
.apdisk
149+
150+
151+
### Java ###
152+
*.class
153+
154+
# BlueJ files
155+
*.ctxt
156+
157+
# Mobile Tools for Java (J2ME)
158+
.mtj.tmp/
159+
160+
# Package Files #
161+
*.jar
162+
*.war
163+
*.ear
164+
165+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
166+
hs_err_pid*

0 commit comments

Comments
 (0)