Search Gradle plugins

Version 0.1-SNAPSHOT (latest)

Created 20 October 2018.

A plugin for the Android Product Team (APT) at Mozilla

Using the plugins DSL:

plugins {
  id("org.mozilla.apt") version "0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.mozilla.apt:gradle-plugin:0.1-SNAPSHOT")
  }
}

apply(plugin = "org.mozilla.apt")

Using the plugins DSL:

plugins {
  id "org.mozilla.apt" version "0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.mozilla.apt:gradle-plugin:0.1-SNAPSHOT"
  }
}

apply plugin: "org.mozilla.apt"

Learn how to apply plugins to subprojects