com.dropbox.affectedmoduledetector
一个Gradle插件,用于确定哪些模块在提交中被影响。
https://github.com/Dropbox/AffectedModuleDetector
来源: https://github.com/Dropbox/AffectedModuleDetector
使用plugins DSL
plugins {
id("com.dropbox.affectedmoduledetector") version "0.1.0"
}
使用遗产插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0")
}
}
apply(plugin = "com.dropbox.affectedmoduledetector")
使用plugins DSL
plugins {
id "com.dropbox.affectedmoduledetector" version "0.1.0"
}
使用遗产插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0"
}
}
apply plugin: "com.dropbox.affectedmoduledetector"