Organize and annotate gitignores
This commit is contained in:
parent
015ead0c45
commit
c8d199bc83
|
@ -1,37 +1,42 @@
|
||||||
|
|
||||||
|
# intellij files
|
||||||
.idea/
|
.idea/
|
||||||
.gradle/
|
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
work/
|
|
||||||
/data/
|
|
||||||
logs/
|
|
||||||
.DS_Store
|
|
||||||
build/
|
|
||||||
generated-resources/
|
|
||||||
**/.local*
|
|
||||||
docs/html/
|
|
||||||
docs/build.log
|
|
||||||
/tmp/
|
|
||||||
backwards/
|
|
||||||
html_docs
|
|
||||||
.vagrant/
|
|
||||||
|
|
||||||
## eclipse ignores (use 'mvn eclipse:eclipse' to build eclipse projects)
|
# eclipse files
|
||||||
## All files (.project, .classpath, .settings/*) should be generated through Maven which
|
|
||||||
## will correctly set the classpath based on the declared dependencies and write settings
|
|
||||||
## files to ensure common coding style across Eclipse and IDEA.
|
|
||||||
.project
|
.project
|
||||||
.classpath
|
.classpath
|
||||||
eclipse-build
|
eclipse-build
|
||||||
.settings
|
.settings
|
||||||
|
|
||||||
## netbeans ignores
|
# netbeans files
|
||||||
nb-configuration.xml
|
nb-configuration.xml
|
||||||
nbactions.xml
|
nbactions.xml
|
||||||
|
|
||||||
dependency-reduced-pom.xml
|
# gradle stuff
|
||||||
|
.gradle/
|
||||||
|
build/
|
||||||
|
generated-resources/
|
||||||
|
|
||||||
# old patterns specific to maven
|
# maven stuff (to be removed when trunk becomes 4.x)
|
||||||
*-execution-hints.log
|
*-execution-hints.log
|
||||||
target/
|
target/
|
||||||
|
dependency-reduced-pom.xml
|
||||||
|
|
||||||
|
# testing stuff
|
||||||
|
**/.local*
|
||||||
|
.vagrant/
|
||||||
|
|
||||||
|
# osx stuff
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# random old stuff that we should look at the necessity of...
|
||||||
|
docs/html/
|
||||||
|
docs/build.log
|
||||||
|
html_docs
|
||||||
|
/tmp/
|
||||||
|
backwards/
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue