com.gaelmarhic.quadrant
所有者: Gaël Marhic
为Android开发的一个Gradle插件,可以使在多模块项目中轻松导航。
https://github.com/gaelmarhic/Quadrant
来源: https://github.com/gaelmarhic/Quadrant
使用 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"