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
At present, all plugin dependencies are bundled directly into the jar or through other plugins like TelegramBotAPI. This approach has several drawbacks:
Increases the build size.
Requires direct dependency on other plugins.
Necessitates downloading these plugins.
Proposed Solution:
Usage of the libby library, which downloads jars during runtime. This will help in reducing the build size and eliminating the need for direct dependencies.
Tasks:
Replace existing plugin dependencies with dynamic dependencies. This change should remain backward compatible. However, backward compatibilty will be deprecated in the future.
Replace bundle dependencies with dynamic dependencies.
The text was updated successfully, but these errors were encountered:
At present, all plugin dependencies are bundled directly into the jar or through other plugins like TelegramBotAPI. This approach has several drawbacks:
Proposed Solution:
Usage of the
libby
library, which downloads jars during runtime. This will help in reducing the build size and eliminating the need for direct dependencies.Tasks:
The text was updated successfully, but these errors were encountered: