Search Gradle plugins

Version 1.0

Created 29 September 2017.

A plugin that helps you runs multiple Gradle tasks as isolated sequential steps and collect the output

Using the plugins DSL:

plugins {
  id("org.ysb33r.gradlerunner") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ysb33r.gradle:gradletest:1.0")
  }
}

apply(plugin = "org.ysb33r.gradlerunner")

Using the plugins DSL:

plugins {
  id "org.ysb33r.gradlerunner" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ysb33r.gradle:gradletest:1.0"
  }
}

apply plugin: "org.ysb33r.gradlerunner"

Learn how to apply plugins to subprojects