Search Gradle plugins

Version 1.0.2

Created 20 April 2018.

Gradle plugin that facilitates DevFun annotation processor configuration.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.nextfaze.devfun"

Learn how to apply plugins to subprojects