Is it valid to define a Settings plugin in a includeBuild
project? When I try I get errors that the plugin cannot be found. I’ve tried both plugins {}
as well as apply plugin:
syntax.
Thanks!
Is it valid to define a Settings plugin in a includeBuild
project? When I try I get errors that the plugin cannot be found. I’ve tried both plugins {}
as well as apply plugin:
syntax.
Thanks!
If Gradle 7+, you can specify the included plugin build inside the pluginManagement
block.
https://docs.gradle.org/current/userguide/composite_builds.html#included_plugin_builds
Thank you Chris!
extra to get to 20