0

I had an issue with using MongoDB Morphia on Android which led me to this post where there is a sugestion to "exclude the cglib dependencies" from my app. How would I do that?

eriel marimon
  • 1,230
  • 1
  • 19
  • 29

1 Answers1

0

By not adding it to the class path at runtime.

In Maven, you can exclude dependencies by the <excludes> tag within the dependency declaration.

Rafael Winterhalter
  • 42,759
  • 13
  • 108
  • 192