Is there a way to use precompiled script plugin in...
# community-support
k
Is there a way to use precompiled script plugin in another precompiled script plugin? I have multi-module project as long as I use dependency on binary plugins from other modules or scripted plugins from the same modules it seems to work but whenever I apply scripted plugin from one module inside another it seems to miss everything that should be applied as part of this plugin.
j
you can apply it with the id
foo-bar.gradle.kts
Copy code
// other-plugin.gradle.kts
plugins {
    id(“foo-bar”)
}
v
What do you mean with "miss everything"? Because that sounds like you successfully applied the plugin but it did not do any work and that would be very strange and demand an MCVE.