janetsmith
janetsmith

Reputation: 8722

library jar uses different version of Spring

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

Answers (1)

Eugene Ryzhikov
Eugene Ryzhikov

Reputation: 17359

That depends on a build system you are using. For Maven you can exclude conflicting dependencies.

Upvotes: 1

Related Questions