diff options
author | Edoardo La Greca | 2025-06-15 19:14:48 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-06-15 19:14:48 +0200 |
commit | 9766c5eb6ab200660bb4615c6183fff8020ddb8a (patch) | |
tree | 28cf1efd7ea05fd010993e3acc8745711a36211d /.gitignore | |
parent | 0ba2f6c9ccc0b4756a4ef592eac8ced5db121907 (diff) |
add .gitignore
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1dff0d --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Kotlin ### +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store
\ No newline at end of file |