org.unbroken-dome.test-sets
Owner: Till Krullmann
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 4.1.0 (latest)
4.1.0
Created 09 September 2023.
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 "4.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:4.1.0")
}
}
apply(plugin = "org.unbroken-dome.test-sets")
Using the plugins DSL:
plugins {
id "org.unbroken-dome.test-sets" version "4.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:4.1.0"
}
}
apply plugin: "org.unbroken-dome.test-sets"