Search Gradle plugins

Version 0.5.20180628070326

Created 28 June 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.5.20180628070326"
}

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.5.20180628070326")
  }
}

apply(plugin = "com.github.rmee.build-on-change")

Using the plugins DSL:

plugins {
  id "com.github.rmee.build-on-change" version "0.5.20180628070326"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.rmee:build-on-change:0.5.20180628070326"
  }
}

apply plugin: "com.github.rmee.build-on-change"

Learn how to apply plugins to subprojects