Currently, I am working on a project that consists of multiple independent plugins. Each functionality has its own plugin that can be reused in future projects.
As of now, I am utilizing the plugin from my theme in development mode without packaging by using
grails.plugin.location.'MyThemePlugin' = "../MyThemePlugin"
Everything was functioning smoothly until I integrated another plugin that contained several CSS and JS files with the same names as the ones in the existing theme but were older versions. Consequently, this led to the breaking of the theme and it stopped functioning properly.
Is there any possible way to disable the resource (CSS and JS) files of this additional plugin causing conflicts?