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.8

Created 21 December 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.gaelmarhic.quadrant"

Learn how to apply plugins to subprojects