Search Gradle plugins

Version 1.0.0 (latest)

Created 12 October 2018.

Gradle plugin to determine changed modules for CD

Using the plugins DSL:

plugins {
  id("com.github.frankfarrell.blastradius") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.frankfarrell.blastradius:blast-radius:1.0.0")
  }
}

apply(plugin = "com.github.frankfarrell.blastradius")

Using the plugins DSL:

plugins {
  id "com.github.frankfarrell.blastradius" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.frankfarrell.blastradius:blast-radius:1.0.0"
  }
}

apply plugin: "com.github.frankfarrell.blastradius"

Learn how to apply plugins to subprojects