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 2.1.0

Created 21 January 2019.

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 "2.1.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects