From f3166c0e4d5802b92a468d3f4e664afb164f627b Mon Sep 17 00:00:00 2001 From: CNLuminous Date: Fri, 8 Aug 2025 00:35:01 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=BB=93=E6=9E=84=E5=92=8C=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 .gitignore 文件,配置版本控制忽略项 - 创建 Maven 项目配置文件 pom.xml- 添加 IntelliJ IDEA 项目配置文件 - 创建项目主类 LimboBackSpawn --- .gitignore | 38 +++++++++++++++++++ .idea/.gitignore | 8 ++++ .idea/encodings.xml | 7 ++++ .idea/misc.xml | 14 +++++++ .idea/vcs.xml | 6 +++ pom.xml | 31 +++++++++++++++ .../java/com/blockfantasy/LimboBackSpawn.java | 4 ++ 7 files changed, 108 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 pom.xml create mode 100644 src/main/java/com/blockfantasy/LimboBackSpawn.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..82dbec8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a2d56bf --- /dev/null +++ b/pom.xml @@ -0,0 +1,31 @@ + + + 4.0.0 + + com.blockfantasy + LimboBackSpawn + 1.0-SNAPSHOT + + + 17 + 17 + UTF-8 + + + + loohp-repo + https://repo.loohpjames.com/repository + + + + + + com.loohp + Limbo + 0.7.15-ALPHA + provided + + + \ No newline at end of file diff --git a/src/main/java/com/blockfantasy/LimboBackSpawn.java b/src/main/java/com/blockfantasy/LimboBackSpawn.java new file mode 100644 index 0000000..014b2e2 --- /dev/null +++ b/src/main/java/com/blockfantasy/LimboBackSpawn.java @@ -0,0 +1,4 @@ +package com.blockfantasy; + +public class LimboBackSpawn { +}