No description
Find a file
md_5 de8d54ded0 Update Guava to 11.0.2.
Whilst it is possible for a change such as this to be breaking, the version bump in itself is very small and Guava only removes APIs after 18 months deprecation. Given the proliferation of servers such as MCPC bundling Guava versions of 14.0 upwards as well as the fact that developers should steer clear away from using deprecated APIs, it is very unlikely this change will cause any issues. Furthermore this version brings multiple bug fixes and represents the minimum version required by Minecraft itself.
2014-06-26 17:02:44 +10:00
Bukkit@c025253012 Partial upstream merge. 2014-06-24 18:00:00 +10:00
Bukkit-Patches Update Guava to 11.0.2. 2014-06-26 17:02:44 +10:00
CraftBukkit@0007bba1a2 Partial upstream merge. 2014-06-24 18:00:00 +10:00
CraftBukkit-Patches Ignore damage done by LivingEntity.damage() 2014-06-25 21:43:25 +01:00
MinecraftRelocate Add a new subproject MinecraftRelocate which will generate a minecraft-server jar, but with the net.minecraft.util libraries in their original package. 2014-06-26 16:54:51 +10:00
.gitignore Add a .gitignore to the root repo 2014-06-26 16:49:30 +10:00
.gitmodules
.travis.yml
applyPatches.sh Set shell prompt to $ when running the patch scripts, helps with speed on windows. 2014-04-14 21:01:27 +10:00
pom.xml Add a new subproject MinecraftRelocate which will generate a minecraft-server jar, but with the net.minecraft.util libraries in their original package. 2014-06-26 16:54:51 +10:00
README.md
rebuildPatches.sh Set shell prompt to $ when running the patch scripts, helps with speed on windows. 2014-04-14 21:01:27 +10:00
upstreamMerge.sh Set shell prompt to $ when running the patch scripts, helps with speed on windows. 2014-04-14 21:01:27 +10:00

Spigot Build Status

High performance Minecraft server implementation

How To

Init a Craftbukkit and Bukkit module : git submodule update --init

Apply Patches : ./applyPatches.sh

Create patch for server

cd Spigot-Server

Add your file for commit : git add <file>

Commit : git commit -m <msg>

cd ..

Create Patch ./rebuildPatches.sh

Create patch for API

cd Spigot-API

Add your file for commit : git add <file>

Commit : git commit -m <msg>

cd ..

Create Patch ./rebuildPatches.sh

Compilation

We use maven to handle our dependencies.

  • Install Maven 3
  • Clone this repo and: mvn clean install