Class ModuleBuilder

java.lang.Object
com.chillycheesy.modulo.modules.ModuleBuilder

public class ModuleBuilder extends Object
Class used to build a Module from a File
The file you want to build should be a jar file with a module.yml at the root of the jar.

 name: <name of your module>
 version: <version of your module>
 authors: [<the persons that works on your module>]
 dependencies: [<modules you need to load your module>]
 soft-dependencies: [<modules you can work with without needing it>]
 main: <the path to you module class> for exemple: (com.dev.module.MyAwesomeModule)