com.gradle.plugin-publish
Owner: Gradle
Publish plugins to the Gradle Plugin Portal
https://plugins.gradle.org/docs/publish-plugin
Sources: http://www.gradleware.com
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gradle.plugin-publish") version "0.9.7"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradle.publish:plugin-publish-plugin:0.9.7") } } apply(plugin = "com.gradle.plugin-publish")
- Applying plugins to all subprojects .