Added back setup scripts

This commit is contained in:
Jaime Martínez Rincón 2017-10-07 20:43:19 +02:00
parent 81c51b0e8c
commit c083b665ec
2 changed files with 14 additions and 0 deletions

7
setup.bat Normal file
View File

@ -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

7
setup.sh Normal file
View File

@ -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