Paper and startup and git lfs

This commit is contained in:
John Doty 2024-11-29 07:09:54 -08:00
parent 2fbde68af9
commit b512f70faa
6 changed files with 20 additions and 2 deletions

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
*.jar filter=lfs diff=lfs merge=lfs -text

4
.gitignore vendored
View file

@ -18,7 +18,7 @@ out/
*.ctxt
# Package Files #
*.jar
# *.jar
*.war
*.nar
*.ear
@ -111,3 +111,5 @@ buildNumber.properties
# Common working directory
run/
# Server stuff

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# A Minecraft Server Plugin
This uses the Bukkit API I guess.
I don't know if it's possible to make it use multiple and I just want to run this on my paper server for now.
Also, I don't know very much about Java build tooling so this might be fully garbage at the moment.
This is developed with IntelliJ community something-or-other
Also the "Minecraft Development" plugin version 2024.3-1.8.2.

BIN
paper/paper-1.21.3-67.jar (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -7,7 +7,7 @@ public final class Solidarity extends JavaPlugin {
@Override
public void onEnable() {
// Plugin startup logic
getLogger().info("Hello World!");
getLogger().info("Hello World! It's a me!");
}
@Override

4
start.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
mkdir -p ./run/paper/
cd ./run/paper/
java -Xms4G -Xmx4G -jar ../../paper/paper-1.21.3-67.jar --nogui