com.dropbox.affectedmoduledetector
Owner: Dropbox Mobile Foundation
A Gradle Plugin to determine which modules were affected in a commit.
https://github.com/Dropbox/AffectedModuleDetector
Sources: https://github.com/Dropbox/AffectedModuleDetector
Version 0.1.0 (latest)
0.1.0
Created 05 November 2020.
A Gradle Plugin to determine which modules were affected in a commit.
Using the plugins DSL:
plugins {
id("com.dropbox.affectedmoduledetector") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0")
}
}
apply(plugin = "com.dropbox.affectedmoduledetector")
Using the plugins DSL:
plugins {
id "com.dropbox.affectedmoduledetector" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0"
}
}
apply plugin: "com.dropbox.affectedmoduledetector"