Search Gradle plugins

Version 0.1

Created 26 December 2017.

An Android-Gradle plugin port of https://github.com/FortAwesome/Font-Awesome.

Using the plugins DSL:

plugins {
  id("com.github.gmazzo.fontawesome") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.gmazzo:fontawesome-plugin:0.1")
  }
}

apply(plugin = "com.github.gmazzo.fontawesome")

Using the plugins DSL:

plugins {
  id "com.github.gmazzo.fontawesome" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.gmazzo:fontawesome-plugin:0.1"
  }
}

apply plugin: "com.github.gmazzo.fontawesome"

Learn how to apply plugins to subprojects