You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Relocation is pretty much a necessity with any classpath based process.
Currently PDM does not do this at all, which in the future may cause problems in the form of conflicts.
Implementing this would be a trivial process into the pipeline:
Download
Relocate based on version or something random
Load into classpath
There are existing libraries to do this (eg Lucko's jar-relocator) or a custom solution may be necessary.
Relocation should likely be done in a typical format for 2 reasons:
Maintains readable stacktraces
Allows potential compatibility with things like shadow for transitive use.
This feature will likely also require a meta file that stores important information inside PluginLibraries. (Eg original package name)
This will likely be a feature that takes time, as it's important to make sure it's fully working before publishing at all.