jisungbin / dependency-graph-plugin

A simple Gradle plugin that shows the dependency graph of the project.
MIT License
7 stars 0 forks source link

TODO: Configuration Cache #8

Open jisungbin opened 1 year ago

jisungbin commented 1 year ago

Configuration Cache is not currently supported. Please add the options below as a workaround.

tasks.matching { task ->
    task.name.contains("dependencyGraph")
}.configureEach {
    notCompatibleWithConfigurationCache("https://github.com/jisungbin/dependency-graph-plugin/issues/8")
}
jisungbin commented 1 year ago

Ref: https://github.com/takahirom/roborazzi/pull/31