I've recently been trying to create a new mod for my server and I've hit an annoyance when trying to add in some IC2 functionality due to the fact that I haven't been able to add a full copy of IC2 to my testing environment (from inside NetBeans, hitting the run option). I tried loading my mod with just the API, but that only ends up throwing RuntimeExceptions when the IC2 API tries to call stuff in ic2.platform, which isn't present, and, even if that wasn't the case, I realized it would be somewhat futile to try and test a machine that requires power without having access to any of the actual blocks that produce it. Afte that, without thinking much about it, I tried just dumping the IC2 jar into the mods folder of the test version of the application, but that doesn't work since the code is compiled, but still unobfuscated at the time. After reading through the forums a lot, I've already gathered that decompiling it isn't an option.
I'd really like to be able to test things through NetBeans, rather than going through the added steps of reobfuscating the code, copying it into a full version of Minecraft, and running things there, so, my question is: is there any easy way to get a full copy of IC2 working through the IDE? I realize that later on, I'll be primarily testing it with a client/server pair, so, it isn't a major issue, but, it would help me in tracking down bugs early on.
Thank you.