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