I have a project with two versions of the same jar (they implement similar classes and other specific classes). One jar is used for the java source files in one folder, and the other one is for other folder.
The problem is that it causes a jar conflict (different class implementation), because it seems that both folders use the first jar found in the dependency list, such as:
Jar_file ... 1.0.0
Jar_file ... 2.0.0
Then , my question is how can I to associate these particular dependencies to each folder in the same project?
Cheers.