.gitignore 444 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Eclipse stuff
  2. /.classpath
  3. /.project
  4. /.settings
  5. /dependency-reduced-pom.xml
  6. #vs code
  7. /.vscode
  8. # netbeans
  9. /nbproject
  10. # we use maven!
  11. /build.xml
  12. # maven
  13. /target
  14. # vim
  15. .*.sw[a-p]
  16. # various other potential build files
  17. /build
  18. /bin
  19. /dist
  20. /manifest.mf
  21. /world
  22. # Mac filesystem dust
  23. *.DS_Store
  24. # intellij
  25. *.iml
  26. *.ipr
  27. *.iws
  28. .idea/
  29. # Project Stuff
  30. /src/main/resources/mcMMO
  31. # Other Libraries
  32. *.jar
  33. # Atlassian Stuff
  34. /atlassian-ide-plugin.xml