dependency-analysis-gradle-plugin
dependency-analysis-gradle-plugin copied to clipboard
Use Property API for extension configuration
expected:
val printBuildHealthProperty: Property<Boolean> = TODO()
dependencyAnalysis {
reporting {
printBuildHealth = printBuildHealthProperty
}
}
actual:
val printBuildHealthProperty: Property<Boolean> = TODO()
dependencyAnalysis {
reporting {
printBuildHealth(printBuildHealthProperty.get())
}
}
We would like to avoid the .get() - thanks!
Thanks for the issue. I'm open to this change but can't prioritize it. If you want to contribute a PR, I'm happy to review.