diff --git a/setup.bat b/setup.bat new file mode 100644 index 0000000..15f9294 --- /dev/null +++ b/setup.bat @@ -0,0 +1,7 @@ +@echo off + +mkdir libs +cd libs + +powershell -Command "Invoke-WebRequest https://ci.md-5.net/job/BungeeCord/lastSuccessfulBuild/artifact/bootstrap/target/BungeeCord.jar -OutFile BungeeCord.jar" +mvn install:install-file -Dfile=BungeeCord.jar -DgroupId=net.md-5 -DartifactId=bungeecord-proxy -Dversion=local -Dpackaging=jar \ No newline at end of file diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..8b9e33a --- /dev/null +++ b/setup.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +mkdir libs +cd libs + +wget https://ci.md-5.net/job/BungeeCord/lastSuccessfulBuild/artifact/bootstrap/target/BungeeCord.jar +mvn install:install-file -Dfile=BungeeCord.jar -DgroupId=net.md-5 -DartifactId=bungeecord-proxy -Dversion=local -Dpackaging=jar \ No newline at end of file