.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. ## Gradle:
  2. .gradle/
  3. gradle-app.setting
  4. /build/
  5. /android/build/
  6. /core/build/
  7. /lwjgl2/build/
  8. /lwjgl3/build/
  9. /html/build/
  10. /teavm/build/
  11. /ios/build/
  12. /ios-moe/build/
  13. /headless/build/
  14. /server/build/
  15. /shared/build/
  16. ## Java:
  17. *.class
  18. *.war
  19. *.ear
  20. hs_err_pid*
  21. .attach_pid*
  22. ## Android:
  23. /android/libs/armeabi-v7a/
  24. /android/libs/arm64-v8a/
  25. /android/libs/x86/
  26. /android/libs/x86_64/
  27. /android/gen/
  28. /android/out/
  29. local.properties
  30. com_crashlytics_export_strings.xml
  31. ## Robovm:
  32. /ios/robovm-build/
  33. ## iOS:
  34. /ios/xcode/*.xcodeproj/*
  35. !/ios/xcode/*.xcodeproj/xcshareddata
  36. !/ios/xcode/*.xcodeproj/project.pbxproj
  37. /ios/xcode/native/
  38. /ios/IOSLauncher.app
  39. /ios/IOSLauncher.app.dSYM
  40. ## GWT:
  41. /html/war/
  42. /html/gwt-unitCache/
  43. .apt_generated/
  44. /html/war/WEB-INF/deploy/
  45. /html/war/WEB-INF/classes/
  46. .gwt/
  47. gwt-unitCache/
  48. www-test/
  49. .gwt-tmp/
  50. ## TeaVM:
  51. # Not sure yet...
  52. ## IntelliJ, Android Studio:
  53. .idea/
  54. *.ipr
  55. *.iws
  56. *.iml
  57. ## Eclipse:
  58. .classpath
  59. .project
  60. .metadata/
  61. /android/bin/
  62. /core/bin/
  63. /lwjgl2/bin/
  64. /lwjgl3/bin/
  65. /html/bin/
  66. /teavm/bin/
  67. /ios/bin/
  68. /ios-moe/bin/
  69. /headless/bin/
  70. /server/bin/
  71. /shared/bin/
  72. *.tmp
  73. *.bak
  74. *.swp
  75. *~.nib
  76. .settings/
  77. .loadpath
  78. .externalToolBuilders/
  79. *.launch
  80. ## NetBeans:
  81. /nbproject/private/
  82. /android/nbproject/private/
  83. /core/nbproject/private/
  84. /lwjgl2/nbproject/private/
  85. /lwjgl3/nbproject/private/
  86. /html/nbproject/private/
  87. /teavm/nbproject/private/
  88. /ios/nbproject/private/
  89. /ios-moe/nbproject/private/
  90. /headless/nbproject/private/
  91. /server/nbproject/private/
  92. /shared/nbproject/private/
  93. /nbbuild/
  94. /android/nbbuild/
  95. /core/nbbuild/
  96. /lwjgl2/nbbuild/
  97. /lwjgl3/nbbuild/
  98. /html/nbbuild/
  99. /teavm/nbbuild/
  100. /ios/nbbuild/
  101. /ios-moe/nbbuild/
  102. /headless/nbbuild/
  103. /server/nbbuild/
  104. /shared/nbbuild/
  105. /dist/
  106. /android/dist/
  107. /core/dist/
  108. /lwjgl2/dist/
  109. /lwjgl3/dist/
  110. /html/dist/
  111. /teavm/dist/
  112. /ios/dist/
  113. /ios-moe/dist/
  114. /headless/dist/
  115. /server/dist/
  116. /shared/dist/
  117. /nbdist/
  118. /android/nbdist/
  119. /core/nbdist/
  120. /lwjgl2/nbdist/
  121. /lwjgl3/nbdist/
  122. /html/nbdist/
  123. /teavm/nbdist/
  124. /ios/nbdist/
  125. /ios-moe/nbdist/
  126. /headless/nbdist/
  127. /server/nbdist/
  128. /shared/nbdist/
  129. nbactions.xml
  130. nb-configuration.xml
  131. ## OS-Specific:
  132. .DS_Store
  133. Thumbs.db
  134. ## Miscellaneous:
  135. *~
  136. *.*#
  137. *#*#
  138. /.kotlin/
  139. /assets/assets.txt
  140. ## Special cases:
  141. ## There is a resource-config.json file generated by nativeimage.gradle if you use Graal Native Image.
  142. ## Some usage may need extra resource configuration in a different file with the same name.
  143. ## You could also add that configuration to the text in nativeimage.gradle .
  144. ## You should delete or comment out the next line if you have configuration in a different resource-config.json .
  145. **/resource-config.json