com.github.frankfarrell.blastradius
Owner: Frank Farrell
Gradle plugin to determine changed modules for CD
https://github.com/frankfarrell/blast-radius
Sources: https://github.com/frankfarrell/blast-radius
Version 1.0.0 (latest)
1.0.0
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"