Posted July 11, 201510 yr Hi everyone. I am wondering how to create a library for other modders to use in their mods as a dependency. I know I would probably just code it like a normal mod, but what do I do when I'm done coding? I know I would have to deobfuscate it, but how would I do that?
July 11, 201510 yr add this to ur build.gradle and use deobfJar task deobfJar(type: Jar) { from sourceSets.main.output classifier = 'deobf' } task sourceJar(type: Jar) { from sourceSets.main.allSource classifier = 'sources' }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.