Search Gradle plugins

com.gaelmarhic.quadrant

A Gradle plugin for Android that makes navigation easy in multi-module projects.

https://github.com/gaelmarhic/Quadrant

Sources: https://github.com/gaelmarhic/Quadrant

Version 1.0

Created 23 February 2020.

A Gradle plugin for Android that makes navigation easy in multi-module projects.

Using the plugins DSL:

plugins {
  id("com.gaelmarhic.quadrant") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gaelmarhic:quadrant:1.0")
  }
}

apply(plugin = "com.gaelmarhic.quadrant")

Using the plugins DSL:

plugins {
  id "com.gaelmarhic.quadrant" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gaelmarhic:quadrant:1.0"
  }
}

apply plugin: "com.gaelmarhic.quadrant"

Learn how to apply plugins to subprojects