de.micschro.shardwise
Owner:
micschr0
Shards a multi-module build's test tasks across parallel CI nodes via Greedy-LPT. Requires Gradle 8.11+ and Java 17+.
https://github.com/micschr0/gradle-test-shard-plugin
Sources: https://github.com/micschr0/gradle-test-shard-plugin
Version 0.4.1 (latest)
Created 22 July 2026.
Gradle test sharding & splitting for CI: balances test tasks across parallel nodes by measured runtime
Add this plugin to your build using the plugins DSL:
plugins {
id("de.micschro.shardwise") version "0.4.1"
}
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("de.micschro.shardwise:de.micschro.shardwise.gradle.plugin:0.4.1") }It can then be applied in the precompiled script plugin:plugins { id("de.micschro.shardwise") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.micschro.shardwise:de.micschro.shardwise.gradle.plugin:0.4.1") } } apply(plugin = "de.micschro.shardwise") - Applying plugins to all subprojects .