Transition to Maven

This commit is contained in:
Erik Broes
2011-01-01 11:47:24 +01:00
parent fc58672e6a
commit 84bf373c55
16 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();
}
}
}