Search Gradle plugins

com.divio.fam.gradle.plugin

This Gradle plugin works in tantem with the Gradle Flavour addon manager and allows addons to be easily managed with the Flavours CLI tool.

http://www.flavours.dev/

Sources: https://github.com/flavours/fam-gradle-plugin

Version 0.1.1 (latest)

Created 25 May 2020.

This Gradle plugin works in tantem with the Gradle Flavour addon manager and allows addons to be easily managed with the Flavours CLI tool.

Using the plugins DSL:

plugins {
  id("com.divio.fam.gradle.plugin") version "0.1.1"
}

Using legacy plugin application:

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

apply(plugin = "com.divio.fam.gradle.plugin")

Using the plugins DSL:

plugins {
  id "com.divio.fam.gradle.plugin" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.divio.fam.gradle:fam-gradle-plugin:0.1.1"
  }
}

apply plugin: "com.divio.fam.gradle.plugin"

Learn how to apply plugins to subprojects