Search Gradle plugins

Version 2.1.0 (latest)

Created 24 May 2019.

Gradle plugin that facilitates DevFun annotation processor configuration.

Using the plugins DSL:

plugins {
  id("com.nextfaze.devfun") version "2.1.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:2.1.0")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.nextfaze.devfun"

Learn how to apply plugins to subprojects