Add build script and update README.md

This commit is contained in:
fuzzybot 2016-06-29 17:42:20 -05:00
parent a7acead907
commit d024f19ba5
2 changed files with 16 additions and 0 deletions

View File

@ -17,6 +17,18 @@ the ecosystem by allowing changes to be exposed to a wider audience more quickly
Waterfall will still track upstream BungeeCord and merge changes as needed.
How To (Server Admins)
------
Download a copy of Waterfall.jar from our buildserver here: [Waterfall](https://ci.aquifermc.org/job/Waterfall/)
Waterfall requires **Java 8** or above.
How To (Compiling From Source)
------
To compile Waterfall, you need JDK8, git, bash, maven, and an internet connection.
Clone this repo, run ./build.sh from *bash*, get jar from Waterfall-Proxy/bootstrap/target/
## Join us
* Feel free to open a PR! We accept contributions.

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
git submodule update --init && ./applyPatches.sh && pushd Waterfall-Proxy && mvn clean package && popd