1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # Maven #
- #########
- target
- /target
- **/dependency-reduced-pom.xml
- # Gradle #
- #########
- !**/gradle/wrapper/*
- .gradle
- **/build/
- **/generated/
- examples/**/build/
- # Eclipse #
- ###########
- *.launch
- .settings
- .project
- .classpath
- # Eclipse is odd in assuming in can use bin to put temp files into it
- # This assumes we do not have sub-projects that actually need bin files committed
- */bin/
- # OS generated files #
- ######################
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- Icon?
- ehthumbs.db
- Thumbs.db
- # Intellij Idea #
- #################
- .idea
- *.iml
- *.ipr
- *.iws
- out/
- # Visual Studio Code #
- ######################
- .vscode
- **/bin/
- # Others #
- ##########
- /logs/*
- /bin
- /out
- /workspace
- java-agent/benchmark-integration/perf-test-settings.rc
- derby.log
- hs_err_pid*
- replay_pid*
- .attach_pid*
- !java-agent/benchmark/releases/*.jar
|