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)
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.unbroken-dome.test-sets") version "4.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.unbroken-dome.test-sets:org.unbroken-dome.test-sets.gradle.plugin:4.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.unbroken-dome.test-sets") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.unbroken-dome.test-sets:org.unbroken-dome.test-sets.gradle.plugin:4.1.0") } } apply(plugin = "org.unbroken-dome.test-sets")
- Applying plugins to all subprojects .