I am working on my Bukkit plugin, and I have a nice Library that I made in which I'd like to use. Unfortunately, I am being told that the class for the library is not being found.
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: zone/luaq/lib/utils/command/LCommandExecutor
To sum it up, my library is simply to make my life easier when dealing with the Bukkit API. I am remaking things such as Scoreboards, Commands, etc. But, when I try to use it on my plugin it simply cannot find the class, my IDE (IntelliJ) also informs me of the classes not being found even though it finds them while programming (this error only occurs when I use the library itself and not the library jar file).
In the code, this is simply all I have.
LCommandUtils.register(this, "broadcast", new Broadcast());
LCommandUtils.register(this, "heal", new Heal(), true);
LCommandUtils.register(this, "feed", new Feed(), true);
LCommandUtils.register(this, "fly", new Fly(), true);
LCommandUtils.register(this, "flyspeed", new FlySpeed(), true);
It cannot seem to find the class, even though the library plugin is loading fine on the server. If anyone could help, that'd be great.
Thanks in advance, Luaq