chore: 初始化项目结构和配置

- 添加 .gitignore 文件,配置版本控制忽略项
- 创建 Maven 项目配置文件 pom.xml- 添加 IntelliJ IDEA 项目配置文件
- 创建项目主类 LimboBackSpawn
This commit is contained in:
CNLuminous
2025-08-08 00:35:01 +08:00
commit f3166c0e4d
7 changed files with 108 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store