I intend to extract some part of my project into a jar file in order to reuse it for another project. But before doing this, I have made a .jar file only of a package in my project. Right now i'm struggling to reuse the jar file in my project.
The jar file is generated through cmd:
jar cf filename.jar <folder>
The jar file is then added as a library into the folder libs.
Now I want my current project to use the package inside the jar file in order to compile and not the package that already is in my project. But before even managing to do so, I encounter the following issue in every class inside the jar file:
jarred being the jar file containing the package.
I've been googling and trying to find whats causing this but there's nothing i've found yet. I appreciate any help!

