I have a wrapper that I've built ontop of the Netty library.
I'm trying to export the wrapper as a .JAR so when I add it to another project I can use it's features.
The .JAR file has the Netty.jar file in the dependencies folder, however when I try to import something in my project that has my .jar file as a library, I can't import any netty functions.
Of-course, the .JAR file can access the Netty.Jar fine.
Is there any way to make it so I don't have to have my .jar and the netty.jar as libraries, and instead just have my .jar file share the netty.jar to the project?
Example:
-|_My Project
---|_MyLibrary.Jar
-----| Netty.Jar
Which would mean you would only have to import 'MyLibrary.Jar' to use the features that come with 'Netty.Jar'
Or do I have to do it like this
-|_My Project
---| MyLibrary.Jar
---| Netty.Jar