Search Gradle plugins

Version 0.1.0 (latest)

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"

Learn how to apply plugins to subprojects