0 votes
in Gradle by
What are the types of plugins in Gradle?

1 Answer

0 votes
by

Two types of plugins in Gradle are:

Script Plugins: This provides the additional build script which gives a declarative approach for manipulating the build, and is typically used within a particular build.

Binary Plugins: These consist of the classes which are responsible for implementing the plugin interface. It adopts a programmatic approach in order to perform manipulation of the build.

Related questions

0 votes
asked Jun 21, 2020 in Gradle by Robindeniel
0 votes
asked Jun 21, 2020 in Gradle by Robindeniel
...