Maven / Gradle interview questions
Types of plugin in Gradle.
There are 2 general types of plugins in Gradle, script plugins and binary plugins.
Script plugins are additional build scripts that further configure the build and usually implement a declarative approach to manipulating the build.
Binary plugins are classes that implement the Plugin interface and adopt a programmatic approach to manipulating the build.
More Related questions...