38c37619 by Ean Schuessler

Add .gitignore and remove compiled artifacts from version control

- Add comprehensive .gitignore for Java/Groovy project
- Remove compiled .class files and .jar from git tracking
- Keep only source code and configuration files in version control
- Build artifacts will be generated during compilation process
1 parent 72a25e95
Showing 28 changed files with 44 additions and 2 deletions
1 # Compiled classes and build artifacts
2 build/
3 classes/
4 *.class
5 *.jar
6
7 # IDE files
8 .idea/
9 *.iml
10 *.ipr
11 *.iws
12 .vscode/
13 .settings/
14 .project
15 .classpath
16
17 # Logs
18 *.log
19 logs/
20
21 # Temporary files
22 *.tmp
23 *.temp
24 *.swp
25 *.swo
26 *~
27
28 # OS generated files
29 .DS_Store
30 .DS_Store?
31 ._*
32 .Spotlight-V100
33 .Trashes
34 ehthumbs.db
35 Thumbs.db
36
37 # Gradle
38 .gradle/
39 gradlew
40 gradlew.bat
41
42 # Runtime
43 runtime/
44 log/
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type