update campfire to the latest 1.14.4 version on craftbukkit

update pom.xml to use a repo with almost every single lib you would ever need since nallar has been down for a year
update maven command to fully skip tests propperly
update work/paper
This commit is contained in:
bradd evans
2019-12-20 16:58:56 +00:00
parent d1569d7502
commit 5c9567e797
5 changed files with 25 additions and 6 deletions

4
scripts/build.sh Normal file → Executable file
View File

@@ -35,7 +35,7 @@ echo "[Akarin] Ready to build"
\cp -rf "$basedir/api/pom.xml" "$paperbasedir/Paper-API/"
\cp -rf "$basedir/src" "$paperbasedir/Paper-Server/"
\cp -rf "$basedir/pom.xml" "$paperbasedir/Paper-Server/"
mvn clean install -DskipTests
mvn clean install -Dmaven.test.skip=true
else
rm -rf Paper-API/src
rm -rf Paper-Server/src
@@ -44,7 +44,7 @@ echo "[Akarin] Ready to build"
\cp -rf "$basedir/api/pom.xml" "$paperbasedir/Paper-API/"
\cp -rf "$basedir/src" "$paperbasedir/Paper-Server/"
\cp -rf "$basedir/pom.xml" "$paperbasedir/Paper-Server/"
mvn clean install -DskipTests
mvn clean install -Dmaven.test.skip=true
fi
minecraftversion=$(cat "$paperworkdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)

0
scripts/inst.sh Normal file → Executable file
View File