Implement support for loading mods from loose class files. Currently the only way to load mods is from jar files, however this requires users to build jar every time they make any code change which increases build time. Loading classes directly from directory would be great for mod developers, but would pose a potential security risk for users as Storm would have a harder time verifying if the files are safe to use (as with jar signatures).
Implement support for loading mods from loose class files. Currently the only way to load mods is from
jar
files, however this requires users to build jar every time they make any code change which increases build time. Loading classes directly from directory would be great for mod developers, but would pose a potential security risk for users as Storm would have a harder time verifying if the files are safe to use (as with jar signatures).