I'm using Mule Server 3.8 EE which brings commons-lang 2.4 with it. A third-party library in my project needs commons-lang 2.6, because it uses a method that was introduced in this version.
So when I just start my application, I get a java.lang.NoSuchMethodError
Is there a way to update the dependency in the runtime? What I tried so far:
- including commons-lang 2.6 in my app -> no effect, the one from the runtime is picked up first
- replacing the jar directly in the runtime -> errors in studio, that the 2.4 jar is missing