I´m having issues while trying to execute a unit test using PowerMock with Mockito. I need PowerMockito to mock an static method.
These are the versions I´m using:>
Yes, that was the problem. PowerMock has a dependency to javassist, so I just had to exclude that transitive dependency in my pom and later include the dependency to the fixed version of javassist. And that worked for me. Thanks!