Search Gradle plugins

Version 0.0.1

Created 29 October 2016.

Gradle plugin for adding feature based source sets to Android

Using the plugins DSL:

plugins {
  id("com.github.saadfarooq.featuresets") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.saadfarooq:buildSrc:0.0.1")
  }
}

apply(plugin = "com.github.saadfarooq.featuresets")

Using the plugins DSL:

plugins {
  id "com.github.saadfarooq.featuresets" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.saadfarooq:buildSrc:0.0.1"
  }
}

apply plugin: "com.github.saadfarooq.featuresets"

Learn how to apply plugins to subprojects