Transition to Maven

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
CraftBukkit/Spigot
2011-01-01 11:47:24 +01:00
parent ab747e99f0
commit f73e384c27
11 changed files with 59 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
package org.bukkit.craftbukkit;
import net.minecraft.server.MinecraftServer;
public class Main {
public static void main(String[] args) {
// Todo: Installation script
try {
MinecraftServer.main(args);
} catch (Throwable t) {
t.printStackTrace();
}
}
}