.gitignore 2.6 KB

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