I am developing a java plugin (for BungeeCord) which uses Methods from Guava 28.2. But BungeeCord, the programm that actually loads my plugin, only uses Guava 21. Therefor my plugin crashes since it can't find some methods from Guava 28.2.
Is there a way to make my plugin load its own version of guava and use this version instead of the old one? Can this be done using classloader magic?
Any help is appreciated