mirror of
https://github.com/mii443/minecraft-scala-plugin-template.git
synced 2025-08-22 16:05:37 +00:00
- Complete Scala SpigotMC plugin template
- Docker development environment
- Sample commands (/hello, /info) and event handlers
- Development scripts for easy server management
- Comprehensive README and documentation
🤖 Generated with Claude Code
62 lines
602 B
Plaintext
62 lines
602 B
Plaintext
# Scala/sbt build files
|
|
target/
|
|
project/target/
|
|
project/project/
|
|
.bsp/
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.metals/
|
|
.bloop/
|
|
|
|
# sbt plugins and cache
|
|
.sbt/
|
|
.cache-main
|
|
.cache-tests
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
server-logs/
|
|
|
|
# Server data (world files)
|
|
server-data/
|
|
world/
|
|
world_nether/
|
|
world_the_end/
|
|
|
|
# Runtime files
|
|
eula.txt
|
|
server.properties
|
|
ops.txt
|
|
whitelist.txt
|
|
banned-*.txt
|
|
usercache.json
|
|
usernamecache.json
|
|
|
|
# Backup files
|
|
*.old
|
|
*.bak
|
|
*~
|
|
|
|
# OS specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Docker volumes
|
|
data/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local |