I’m building a Java web app using Amazon SDK for java.
The SDK uses 3rd party Apache common-codec 1.3.
I’ve added common-codec 1.6 to the project (I need it) but it still “finds” the one from the SDK first.
What should be done in scenarios such as this.
I can remove the 1.3 from the SDK but I guess it’s bad practice to just upgrade a library that Amazon uses “internally”.
I’m building a Java web app using Amazon SDK for java. The SDK uses
Share
Right click the project->properties->java build path->Order and Export tab, choose your SDK and move it up in the order.