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.

link|improve this question
Does version 2.0 not include backwards compatibility with version 1.0? – Davos555 Dec 22 '11 at 11:08
Why can't you use version 2.0 in all places in your project? – Alexander Pogrebnyak Dec 22 '11 at 11:36
Hi, there are not backward compatibility :( Really, they are different implementations of the same standard, and not different versions. – Soni Dec 22 '11 at 11:53
do you have an option to redesign project to use single version? or split it to separate projects, using each own single version? I ask because it looks like you're heading for serious design issue - search web for something like jar hell – gnat Dec 22 '11 at 12:12
Unfortunately, I must not to redesign the project because these source files are part of the core project (for my application). The application is split in different projects, but modifying the structure is not advisable, .... although this is the last option if there are not other solution. Thanks for all your suggestions :) – Soni Dec 22 '11 at 12:23
show 1 more comment
feedback

1 Answer

You should refactor the two "folders" to two distinct maven modules. Each one can now declare the version of the library it requires. Then use the maven-shade-plugin to shade the library into the resulting JAR files for both modules. Additionally use the class relocation feature of the maven-shade-plugin to relocate the classes of the library to new packages. Choose different package names for the two versions of the library. You will end up having both versions of the library into two different packages shaded into the resulting JAR files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.