Package org.gradle.plugin.devel.plugins
Class JavaGradlePluginPlugin
- java.lang.Object
-
- org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin
-
@NonNullApi public abstract class JavaGradlePluginPlugin extends java.lang.Object implements Plugin<Project>
A plugin for building java gradle plugins. Automatically generates plugin descriptors. Emits warnings for common error conditions.Provides a direct integration with TestKit by declaring the
gradleTestKit()
dependency for the test compile configuration and a dependency on the plugin classpath manifest generation task for the test runtime configuration. Default conventions can be customized with the help ofGradlePluginDevelopmentExtension
. Integrates with the 'maven-publish' and 'ivy-publish' plugins to automatically publish the plugins so they can be resolved using the `pluginRepositories` and `plugins` DSL.- See Also:
- Gradle plugin development reference
-
-
Constructor Summary
Constructors Constructor Description JavaGradlePluginPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(Project project)
Apply this plugin to the given target object.
-