Search Gradle plugins

Version 0.10.1

0.10.1

Created 01 February 2019.

- Improve stability by removing usage of internal Gradle API

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradle.plugin-publish") version "0.10.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gradle.publish:plugin-publish-plugin:0.10.1")
      }
    }
    
    apply(plugin = "com.gradle.plugin-publish")
  • Applying plugins to all subprojects .