2

In this post, it's described how to enable the BootStrap of a grails plugin: Is there an equivalent to the Bootstrap class in a Plugin.

If a 3rd party plugin has a BootStrap included in this way, is it possible to forcibly exclude MyPluginBootStrap, or at least prevent its execution?

Community
  • 1
  • 1
Armand
  • 23,463
  • 20
  • 90
  • 119

1 Answers1

1

Very straightforward solution - override it by creating bootstrap file with the same name in application (MyPluginBootStrap.grotovy in your case).

Sergei Shushkevich
  • 1,356
  • 10
  • 14