JetBrains / intellij-platform-plugin-template

Template repository for creating plugins for IntelliJ Platform
Apache License 2.0
3.05k stars 618 forks source link

Migrate to provider API improving configuration cache compatibility #343

Closed leonard84 closed 1 year ago

leonard84 commented 1 year ago

Using the provider API defers configuration work until it is needed, reducing configuration time. Furthermore, it is required for making the build configuration cache compatible.

hsz commented 1 year ago

Thanks a bunch for this contribution, folks!