Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,8 @@ if (project == rootProject) {
}
}
}

// Disable configuration cache for spotlessGroovy task which is not compatible
tasks.matching { it.name.contains("spotlessGroovy") }.configureEach {
notCompatibleWithConfigurationCache("Spotless Groovy task references other Task instances which are not supported with configuration cache")
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true

org.gradle.priority=low

Expand Down
Loading