sergey123
sergey123

Reputation: 1

Gradle Convention plugins vs apply from project root dir

what are the reasons to use gradle convention plugin instead of using common gradle file apply from project root dir? is it faster or slower?

I can't find any reason to use the convention plugin except for a link to plugins instead of specifying the path to settings.

Upvotes: 0

Views: 138

Answers (1)

satanmoo
satanmoo

Reputation: 83

In the long run, cross-project configuration usually grows in complexity and becomes a burden. Cross-project configuration can also introduce configuration-time coupling between projects, which can prevent optimizations like configuration-on-demand from working properly.

For more details, please refer to this document.

Upvotes: 0

Related Questions