Search Gradle plugins

Version 3.0-SNAPSHOT (latest)

3.0-SNAPSHOT

Created 31 January 2018.

Greetings from Mujammil!

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.sample.groovy.plugin") version "3.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.sample.groovy.plugin:firstplugin:3.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.sample.groovy.plugin")
  • Applying plugins to all subprojects .