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
# Compiled classes and build artifacts
build/
classes/
*.class
*.jar
# IDE files
.idea/
*.iml
*.ipr
*.iws
.vscode/
.settings/
.project
.classpath
# Logs
*.log
logs/
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Gradle
.gradle/
gradlew
gradlew.bat
# Runtime
runtime/
log/
\ No newline at end of file
No preview for this file type