The Decycle Gradle Plugin adds verification tasks to the Gradle build that check for package and slice cycles on the sources of the Gradle project.
Requirements: Gradle ≥ 5.6, Java ≥ 11
Add the plugin to your build gradle file as described on the Plugin page.
The plugin creates for each source set a corresponding decycleSourceSetName
task.
Additionally, there is one decycle
task that runs all these source set specific tasks.
You can run a single decycle check (for example for the main
source set) with
gradle decycleMain
You can run all decycle checks with
gradle decycle
The decycle
task has a dependency on the check
task, so it will be executed together with other verification tasks if you run
gradle check
The plugin adds a decycle
configuration object to the build, that offers the following optional configuration settings:
Gradle Kotlin DSL
// build.gradle.kts decycle { sourceSets(sourceSets.main, sourceSets.test, ...) including("org.example.includes.**", ...) excluding("org.example.excludes.**", ...) ignoring("org.examples.from.Example" to "org.examples.to.**") slicings { create("name1") { patterns("org.example.{*}.**", ...) allow("a", "b", ...) allowDirect("x", anyOf("y", "z"), ...) } create("name2") { ... } } ignoreFailures(false) reportsEnabled(true) }
Gradle Groovy DSL (click to expand)
// build.gradle decycle { sourceSets sourceSets.main, sourceSets.test, ... including 'org.example.includes.**', ... excluding 'org.example.excludes.**', ... ignoring from: 'org.examples.from.Example', to: 'org.examples.to.**' slicings { name1 { patterns 'org.example.{*}.**', ... allow 'a', 'b', ... allowDirect 'x', anyOf('y', 'z'), ... } name2 { ... } } ignoreFailures false reportsEnabled true }
(Note: technically all configuration settings are method calls and no property assignments.
So you have to use sourceSets ...
or even sourceSets(...)
instead of sourceSets = ...
.
Also, when the settings for sourceSets
, including
, excluding
, and ignoring
are applied multiple times,
they will be added to the existing configuration.)
-
sourceSets
defines the source sets that should be analyzed. By default, all source sets defined in the gradle build file are considered. Use this option if you only want a subset of the source sets to be checked. -
including
defines patterns for the classes that should be included (default: all). -
excluding
defines patterns for the classes that should be excluded (default: none). -
ignoring
defines a dependency (or a pattern for a set of dependencies) that should be ignored when checking cycle (and other) constraints on the analyzed classes (default none). This setting differs fromexcluding
as the ignored dependency is not excluded from the dependency graph (i.e. it is present in the report). Multiple ignored dependencies can be configured by usingignoring
multiple times. Ignored dependencies might be useful if you introduce decycle to an existing project and don't want to resolve all existing cyclic dependencies at once.Using the Kotlin DLS, the parameter for
ignoring
is a pair"from" to "to"
.Using the Groovy DSL the parameter for
ignoring
is a map with the following two keys, both are optional:from:
defines the source of the dependency (default: '**')to
: defines the target of the dependency (default: '**')
-
slicings
starts the slicings block, each slicing has a name (also known as slicing type). A slicing configuration contains:patterns
a list containing patterns (strings), either named or unnamed. A named pattern is defined usingpattern=name
, in an unnamed pattern the name is derived from the matched part in curly braces in the pattern, for example
org.example.{*}.**
.allow
defines a simple order constraint on the defined slicesallowDirect
defines a strict order constraint on the defined slices. As constraints (both simple and strict) you can use- a string (the name of a slice)
anyOf(slice, ...)
for an unspecified slice orderoneOf(slice, ...)
for forbidden dependencies between slices
-
ignoreFailures
whether to allow the build to continue if there are constraint violations (default:false
). -
reportsEnabled
whether to create an HTML report for each analyzed source set (default:true
).