It is a library that implements all Minecraft recipes.
You should add this library to your dependency manager. Here is the maven repository and how to add it.
Here are an example of how to use this library. (It is the same in both languages)
fun start() {
val server = MinecraftServer.init()
VanillaRecipes.init()
server.start("0.0.0.0", 25565)
}
public void start() {
MinecraftServer server = MinecraftServer.init();
VanillaRecipes.init();
server.start("0.0.0.0", 25565);
}
Thanks to Extractor, it is the tool used to create the recipes.json