Search Gradle plugins

Version 0.2.0

Created 13 April 2018.

Gradle plugin that facilitates DevFun annotation processor configuration.

Using the plugins DSL:

plugins {
  id("com.nextfaze.devfun") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.nextfaze.devfun:devfun-gradle-plugin:0.2.0")
  }
}

apply(plugin = "com.nextfaze.devfun")

Using the plugins DSL:

plugins {
  id "com.nextfaze.devfun" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.nextfaze.devfun:devfun-gradle-plugin:0.2.0"
  }
}

apply plugin: "com.nextfaze.devfun"

Learn how to apply plugins to subprojects