com.github.rmee.build-on-change
Owner: hallowelt
Incrementally build Pull Requests based on Git history
https://github.com/rmee/gradle-plugins/tree/master/build-on-change
Sources: https://github.com/rmee/gradle-plugins
Version 0.8.20181027075058
0.8.20181027075058
Created 27 October 2018.
Incrementally build pull Requests based on changes from Git history
Using the plugins DSL:
plugins {
id("com.github.rmee.build-on-change") version "0.8.20181027075058"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rmee:build-on-change:0.8.20181027075058")
}
}
apply(plugin = "com.github.rmee.build-on-change")
Using the plugins DSL:
plugins {
id "com.github.rmee.build-on-change" version "0.8.20181027075058"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rmee:build-on-change:0.8.20181027075058"
}
}
apply plugin: "com.github.rmee.build-on-change"