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.0.1

Created 29 October 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 "2.0.1"
}

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects