Reputation: 8722
My main project is using Spring v4. One of the library files (jar) uses Spring v3.
How to prevent the Spring in the library files conflicts with master project?
Upvotes: 0
Views: 329
Reputation: 17359
That depends on a build system you are using. For Maven you can exclude conflicting dependencies.
Upvotes: 1