Search Gradle plugins

org.unbroken-dome.test-sets

A plugin for the Gradle build system that allows specifying test sets (like integration or acceptance tests). Each test set is a logical grouping of a source set, dependency configurations, and related tasks and artifacts.

https://github.com/unbroken-dome/gradle-testsets-plugin

Version 1.5.0

Created 23 May 2018.

A plugin for the Gradle build system that allows specifying test sets (like integration or acceptance tests). Each test set is a logical grouping of a source set, dependency configurations, and related tasks and artifacts.

Using the plugins DSL:

plugins {
  id("org.unbroken-dome.test-sets") version "1.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.unbroken-dome.gradle-plugins:gradle-testsets-plugin:1.5.0")
  }
}

apply(plugin = "org.unbroken-dome.test-sets")

Using the plugins DSL:

plugins {
  id "org.unbroken-dome.test-sets" version "1.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.unbroken-dome.gradle-plugins:gradle-testsets-plugin:1.5.0"
  }
}

apply plugin: "org.unbroken-dome.test-sets"

Learn how to apply plugins to subprojects