.gitignore 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Maven #
  2. #########
  3. target
  4. /target
  5. **/dependency-reduced-pom.xml
  6. # Gradle #
  7. #########
  8. !**/gradle/wrapper/*
  9. .gradle
  10. **/build/
  11. examples/**/build/
  12. # Eclipse #
  13. ###########
  14. *.launch
  15. .settings
  16. .project
  17. .classpath
  18. # Eclipse is odd in assuming in can use bin to put temp files into it
  19. # This assumes we do not have sub-projects that actually need bin files committed
  20. */bin/
  21. # OS generated files #
  22. ######################
  23. .DS_Store
  24. .DS_Store?
  25. ._*
  26. .Spotlight-V100
  27. .Trashes
  28. Icon?
  29. ehthumbs.db
  30. Thumbs.db
  31. # Intellij Idea #
  32. #################
  33. .idea
  34. *.iml
  35. *.ipr
  36. *.iws
  37. out/
  38. # Visual Studio Code #
  39. ######################
  40. .vscode
  41. **/bin/
  42. # Others #
  43. ##########
  44. /logs/*
  45. /bin
  46. /out
  47. /workspace
  48. java-agent/benchmark-integration/perf-test-settings.rc
  49. derby.log
  50. .java-version
  51. hs_err_pid*
  52. replay_pid*
  53. .attach_pid*
  54. !java-agent/benchmark/releases/*.jar