Skip to content

Commit 59499f6

Browse files
author
Guillaume Polaert
committed
add a gitignore file
0 parents  commit 59499f6

File tree

1 file changed

+156
-0
lines changed

1 file changed

+156
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)