Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 08 October 2024.

A plugin to detect modules with code change in a multi-module project

Using the plugins DSL:

plugins {
  id("com.wandera.affected-module-detector") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.wandera:affected-module-detector:0.1.0")
  }
}

apply(plugin = "com.wandera.affected-module-detector")

Using the plugins DSL:

plugins {
  id "com.wandera.affected-module-detector" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.wandera:affected-module-detector:0.1.0"
  }
}

apply plugin: "com.wandera.affected-module-detector"

Learn how to apply plugins to subprojects