Commit 2102c439a2b48a703ed9a5e824b8be19118bf47d
1 parent
87ff65bb
Ajout fichier gitignore
Showing
1 changed file
with
77 additions
and
0 deletions
Show diff stats
1 | + | |
2 | +### Intellij ### | |
3 | + | |
4 | +# User-specific stuff: | |
5 | +.idea/**/workspace.xml | |
6 | +.idea/**/tasks.xml | |
7 | +.idea/dictionaries | |
8 | + | |
9 | +# Sensitive or high-churn files: | |
10 | +.idea/**/dataSources/ | |
11 | +.idea/**/dataSources.ids | |
12 | +.idea/**/dataSources.xml | |
13 | +.idea/**/dataSources.local.xml | |
14 | +.idea/**/sqlDataSources.xml | |
15 | +.idea/**/dynamic.xml | |
16 | +.idea/**/uiDesigner.xml | |
17 | + | |
18 | +# Gradle: | |
19 | +.idea/**/gradle.xml | |
20 | +.idea/**/libraries | |
21 | + | |
22 | +# Mongo Explorer plugin: | |
23 | +.idea/**/mongoSettings.xml | |
24 | + | |
25 | +## File-based project format: | |
26 | +*.iws | |
27 | + | |
28 | +## Plugin-specific files: | |
29 | + | |
30 | +# IntelliJ | |
31 | +/out/ | |
32 | + | |
33 | +# mpeltonen/sbt-idea plugin | |
34 | +.idea_modules/ | |
35 | + | |
36 | +# Sonarlint plugin | |
37 | +.idea/sonarlint | |
38 | + | |
39 | +### Java ### | |
40 | +# Compiled class file | |
41 | +*.class | |
42 | + | |
43 | +#target directory | |
44 | +**.target/ | |
45 | + | |
46 | +# Log file | |
47 | +*.log | |
48 | + | |
49 | +# BlueJ files | |
50 | +*.ctxt | |
51 | + | |
52 | +# Mobile Tools for Java (J2ME) | |
53 | +.mtj.tmp/ | |
54 | + | |
55 | +# Package Files # | |
56 | +*.jar | |
57 | +*.war | |
58 | +*.ear | |
59 | +*.zip | |
60 | +*.tar.gz | |
61 | +*.rar | |
62 | + | |
63 | +### Maven ### | |
64 | +target/ | |
65 | +pom.xml.tag | |
66 | +pom.xml.releaseBackup | |
67 | +pom.xml.versionsBackup | |
68 | +pom.xml.next | |
69 | +release.properties | |
70 | +dependency-reduced-pom.xml | |
71 | +buildNumber.properties | |
72 | +.mvn/timing.properties | |
73 | + | |
74 | +# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) | |
75 | +!/.mvn/wrapper/maven-wrapper.jar | |
76 | + | |
77 | +*.iml | |
0 | 78 | \ No newline at end of file | ... | ... |