搜索Gradle插件

com.gaelmarhic.quadrant

所有者: Gaël Marhic

为Android开发的一个Gradle插件,可以使在多模块项目中轻松导航。

https://github.com/gaelmarhic/Quadrant

来源: https://github.com/gaelmarhic/Quadrant

版本 1.9.1(最新版)

1.9.1

创建时间:2024年2月3日。

为Android开发的一个Gradle插件,可以使在多模块项目中轻松导航。

使用 plugins DSL

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

使用 旧版插件应用

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

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

使用 plugins DSL

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

使用 旧版插件应用

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

apply plugin: "com.gaelmarhic.quadrant"

了解如何将插件应用到子项目中