Search Gradle plugins

Version 1.0

Created 29 October 2015.

ApkplugComponent from here!

Using the plugins DSL:

plugins {
  id("com.apkplug.gradle.ApkplugComponent") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.apkplug:component_gp:1.0")
  }
}

apply(plugin = "com.apkplug.gradle.ApkplugComponent")

Using the plugins DSL:

plugins {
  id "com.apkplug.gradle.ApkplugComponent" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.apkplug:component_gp:1.0"
  }
}

apply plugin: "com.apkplug.gradle.ApkplugComponent"

Learn how to apply plugins to subprojects