Search Gradle plugins

Version 1.0.3

Created 17 August 2017.

Launcher Icon Overlay Plugin

Using the plugins DSL:

plugins {
  id("ezy.plugin.launchericon") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ezy.plugin:launchericon:1.0.3")
  }
}

apply(plugin = "ezy.plugin.launchericon")

Using the plugins DSL:

plugins {
  id "ezy.plugin.launchericon" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ezy.plugin:launchericon:1.0.3"
  }
}

apply plugin: "ezy.plugin.launchericon"

Learn how to apply plugins to subprojects